PHP getNamespaces() 函數(shù)
實(shí)例
返回 XML 文檔中使用的命名空間:
?php
$xml=XML
?xml version="1.0" standalone="yes"?>
cars xmlns:c="http://codingdict.com/ns" xmlns:a="http://codingdict.com/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()
函數(shù)返回 XML 文檔中使用的命名空間。
語(yǔ)法
getNamespaces( _recursive_ );
總結(jié)
以上就是這篇文章的全部?jī)?nèi)容了,希望本文的內(nèi)容對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,謝謝大家對(duì)腳本之家的支持。如果你想了解更多相關(guān)內(nèi)容請(qǐng)查看下面相關(guān)鏈接
您可能感興趣的文章:- PHP xpath()函數(shù)講解
- PHP addcslashes()函數(shù)講解
- PHP addslashes()函數(shù)講解
- PHP simplexml_load_string()函數(shù)實(shí)例講解
- PHP simplexml_load_file()函數(shù)講解
- PHP simplexml_import_dom()函數(shù)講解
- PHP count()函數(shù)講解
- PHP getDocNamespaces()函數(shù)講解
- PHP getName()函數(shù)講解
- PHP bin2hex()函數(shù)基礎(chǔ)實(shí)例講解