PHP getDocNamespaces() 函數
PHP getDocNamespaces() 函數
實例
返回 XML 文檔的根節(jié)點中聲明的命名空間:
<?php
$xml=<<<XML
<?xml version="1.0" standalone="yes"?>
<cars xmlns:c="http://w3cschool.cc/ns">
<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->getDocNamespaces();
print_r($ns);
?>
$xml=<<<XML
<?xml version="1.0" standalone="yes"?>
<cars xmlns:c="http://w3cschool.cc/ns">
<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->getDocNamespaces();
print_r($ns);
?>
運行實例 ?
定義和用法
getDocNamespaces() 函數返回 XML 文檔中聲明的命名空間。
語法
getDocNamespaces(recursive,from_root);
參數 | 描述 |
---|---|
recursive | 可選。規(guī)定一個布爾值。如果值為 TRUE,則返回所有父節(jié)點和子節(jié)點中聲明的所有命名空間。如果值為 FALSE,則只返回根節(jié)點中聲明的命名空間。默認是 FALSE。 |
from_root | 可選。規(guī)定一個布爾值。如果值為 TRUE,則檢查 XML 文檔的根節(jié)點中的命名空間。如果值為 FALSE,則檢查子節(jié)點下的命名空間。默認是 TRUE。 |
技術細節(jié)
返回值: | 返回一個帶有相關 URI 的命名空間名稱數組。 |
---|---|
PHP 版本: | 5.1.2+ |
PHP 更新日志: | PHP 5.4:新增了 from_root 參數。 |
更多實例
實例 1
返回 XML 文檔的父節(jié)點和子節(jié)點中聲明的所有命名空間:
<?php
$xml=<<<XML
<?xml version="1.0" standalone="yes"?>
<cars xmlns:c="http://w3cschool.cc/ns">
<c:car id="1">Volvo</c:car>
<c:car id="2">BMW</c:car>
<c:car id="3" a:country="Sweden" xmlns:a="http://w3cschool.cc/country">Saab</c:car>
</cars>
XML;
$sxe=new SimpleXMLElement($xml);
$ns=$sxe->getDocNamespaces(TRUE);
var_dump($ns);
?>
$xml=<<<XML
<?xml version="1.0" standalone="yes"?>
<cars xmlns:c="http://w3cschool.cc/ns">
<c:car id="1">Volvo</c:car>
<c:car id="2">BMW</c:car>
<c:car id="3" a:country="Sweden" xmlns:a="http://w3cschool.cc/country">Saab</c:car>
</cars>
XML;
$sxe=new SimpleXMLElement($xml);
$ns=$sxe->getDocNamespaces(TRUE);
var_dump($ns);
?>
運行實例 ?

相關文章
- PHP 常量
- PHP 超級全局變量
- PHP 多維數組
- PHP 錯誤處理
- PHP array_chunk() 函數
- PHP array_diff_assoc() 函數
- PHP array_fill() 函數
- PHP array_keys() 函數
- PHP array_multisort() 函數
- PHP array_rand() 函數
- PHP array_replace_recursive() 函數
- PHP array_udiff_uassoc() 函數
- PHP array_uintersect_assoc() 函數
- PHP asort() 函數
- PHP key() 函數
- PHP shuffle() 函數
- PHP uksort() 函數
- PHP 5 Date/Time 函數
- PHP 5 Directory 函數
- PHP 5 Filesystem 函數