PHP getNamespaces() 函數
PHP getNamespaces() 函數
實例
返回 XML 文檔中使用的命名空間:
<?php
$xml=<<<XML
<?xml version="1.0" standalone="yes"?>
<cars xmlns:c="https://www.runoob.com/ns" xmlns:a="https://www.runoob.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);
?>
$xml=<<<XML
<?xml version="1.0" standalone="yes"?>
<cars xmlns:c="https://www.runoob.com/ns" xmlns:a="https://www.runoob.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() 函數返回 XML 文檔中使用的命名空間。
語法
getNamespaces(recursive);
參數 | 描述 |
---|---|
recursive | 可選。規(guī)定一個布爾值。如果值為 TRUE,則返回所有父節(jié)點和子節(jié)點中聲明的所有命名空間。如果值為 FALSE,則只返回根節(jié)點中聲明的命名空間。默認是 FALSE。 |
技術細節(jié)
返回值: | 返回一個帶有相關 URI 的命名空間名稱數組。 |
---|---|
PHP 版本: | 5.1.2+ |

相關文章
- PHP 安裝
- PHP 包含文件 include 和 require 語句
- PHP Secure E-mails
- PHP JSON
- PHP array() 函數
- PHP array_combine() 函數
- PHP array_filter() 函數
- PHP array_intersect_assoc() 函數
- PHP array_intersect_uassoc() 函數
- PHP array_key_exists() 函數
- PHP array_keys() 函數
- PHP array_splice() 函數
- PHP array_udiff() 函數
- PHP array_walk_recursive() 函數
- PHP count() 函數
- PHP each() 函數
- PHP next() 函數
- PHP pos() 函數
- PHP shuffle() 函數
- PHP Error 和 Logging 函數