DomDocumentType->system_id

(no version information, might be only in CVS)

DomDocumentType->system_id --  Retourne l'identifiant système du type de document

Description

string DomDocumentType->system_id ( void )

DomDocumentType->system_id retourne l'identifiant système du type de document.

Exemple 1. Lire un identifiant système DOM XML

<?php
include("exemple.inc");

if(!
$dom = domxml_open_mem($xmlstr)) {
  echo
"Erreur durant l'analyse du document\n";
  exit;
}

$doctype = $dom->doctype();
echo
$doctype->system_id();
?>

L'exemple ci-dessus va afficher :

/share/sgml/Norman_Walsh/db3xml10/db3xml10.dtd