傳回XML 文件中使用的命名空間:
<?php$xml=<<<XML<?xml version="1.0" standalone="yes"?><cars xmlns:c="http://w3cschool.cc/ns" xmlns:a="http:/ /w3cschool.cc/country"> <c:car id="1">Volvo</c:car> <c:car id="2">BMW</c:car> <c:car id="3">Saab</c:car> </cars>XML;$sxe=new SimpleXMLElement($xml);$ns=$sxe->getNamespaces(true);var_dump($ns);?>getNamespaces() 函數傳回XML 文件中使用的命名空間。
getNamespaces( recursive );
參數 | 描述 |
---|---|
recursive | 可選。規定一個布林值。如果值為TRUE,則傳回所有父節點和子節點中聲明的所有命名空間。如果值為FALSE,則只傳回根節點中聲明的命名空間。預設是FALSE。 |
傳回值: | 傳回一個有相關URI 的命名空間名稱陣列。 |
---|---|
PHP 版本: | 5.1.2+ |