DomDocument->document_element
(No version information available, might be only in CVS)
DomDocument->document_element — ルートè¦ç´ ノードを返ã™
説明
domelement DomDocument->document_element
( void
)
ã“ã®é–¢æ•°ã¯æ–‡ç« ã®ãƒ«ãƒ¼ãƒˆè¦ç´ ノードを返ã—ã¾ã™ã€‚
以下ã®ä¾‹ã¯ãŸã CHAPTER ã¨ã„ã†åå‰ã®è¦ç´ ã‚’è¿”ã—表示ã—ã¾ã™ã€‚ ä»–ã®ãƒŽãƒ¼ãƒ‰ -- コメント -- ã¯è¿”ã—ã¾ã›ã‚“。
Example#1 ルートè¦ç´ ã‚’å–å¾—ã™ã‚‹
<?php
include("example.inc");
if (!$dom = domxml_open_mem($xmlstr)) {
echo "Error while parsing the document\n";
exit;
}
$root = $dom->document_element();
print_r($root);
?>
上ã®ä¾‹ã®å‡ºåŠ›ã¯ä»¥ä¸‹ã¨ãªã‚Šã¾ã™ã€‚
domelement Object ( [type] => 1 [tagname] => chapter [0] => 6 [1] => 137960648 )