PHP
downloads | documentation | faq | getting help | mailing lists | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

DomDocumentType->notations> <DomDocumentType->internal_subset
Last updated: Fri, 18 Jul 2008

view this page in

DomDocumentType->name

(No version information available, might be only in CVS)

DomDocumentType->name — Restituisce il nome del tipo documento

Descrizione

string DomDocumentType->name ( void )

Questa funzione restituisce il nome del tipo documento.

Example #1 Ottenere il nome del tipo documento

<?php
 
include("example.inc");
 
if (!
$dom domxml_open_mem($xmlstr)) {
    echo 
"Error while parsing the document\n";
    exit;
}
 
$doctype $dom->doctype();
echo 
$doctype->name(); // chapter
 
?>



add a note add a note User Contributed Notes
DomDocumentType->name
There are no user contributed notes for this page.

 
show source | credits | stats | sitemap | contact | advertising | mirror sites