(no version information, might be only in CVS)
DomDocumentType_>system_id __
Returns system id of document type
Description
string
DomDocumentType_>system_id ( void )
Returns the system id of the document type_
The following example echos
'/share/sgml/Norman_Walsh/db3xml10/db3xml10_dtd'_
Ejemplo 1_ Retrieving the system id <?php
include("example_inc");
if(!$dom = domxml_open_mem($xmlstr)) {
echo "Error while parsing the document\n";
exit;
}
$doctype = $dom_>doctype();
echo $doctype_>system_id();
?> |
|