(PHP 4 >= 4.1.0)
DomDocumentType->name — 文章型の名前を返す
この関数は文章型の名前を返します。
DomDocumentType の名前を文字列として返します。
例1 文章型の名前を取得する
<?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
?>
DOMDocumentType オブジェクトの name プロパティを使用してください。