PHP getDocNamespaces()函数讲解

作者:php参考手册 时间:2023-06-13 22:19:06 

PHP getDocNamespaces() 函数

实例

返回 XML 文档的根节点中声明的命名空间:


<?php
$xml=<<<XML
<?xml version="1.0" standalone="yes"?>
<cars xmlns:c="http://codingdict.com/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_ );

PHP getDocNamespaces()函数讲解

PHP getDocNamespaces()函数讲解

实例 1

返回 XML 文档的父节点和子节点中声明的所有命名空间:


<?php
$xml=<<<XML
<?xml version="1.0" standalone="yes"?>
<cars xmlns:c="http://codingdict.com/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://codingdict.com/country">Saab</c:car>
</cars>
XML;
$sxe=new SimpleXMLElement($xml);
$ns=$sxe->getDocNamespaces(TRUE);
var_dump($ns);
?>

总结

标签:php,getdocnamespaces(),函数
0
投稿

猜你喜欢

  • mac系统安装Python3初体验

    2023-11-27 07:33:16
  • Html中 IFrame的用法及注意点

    2023-07-02 05:30:16
  • 一文教你利用Python制作一个C盘清理器

    2022-05-05 00:45:20
  • Python协程 yield与协程greenlet简单用法示例

    2023-02-23 04:07:25
  • python DataFrame转dict字典过程详解

    2022-08-16 20:59:08
  • Django+boostrap 美化admin后台的操作

    2022-02-26 16:16:21
  • PyTorch 如何自动计算梯度

    2023-08-13 14:44:20
  • PHP三层结构(上) 简单三层结构

    2023-06-20 06:36:07
  • Python astype(np.float)函数使用方法解析

    2021-02-23 17:28:16
  • scrapy+scrapyd+gerapy 爬虫调度框架超详细教程

    2023-02-06 23:08:41
  • 浅谈Python 参数与变量

    2023-05-19 12:27:25
  • 在Python中使用itertools模块中的组合函数的教程

    2023-11-06 16:31:36
  • Win10下免安装版MySQL8.0.16的安装和配置教程图解

    2024-01-17 02:47:44
  • 一百行Golang代码实现简单并发聊天室

    2024-04-25 15:13:12
  • Python实现简单的俄罗斯方块游戏

    2022-11-17 16:56:58
  • AES加密算法的原理详解与实现分析

    2022-11-18 14:39:43
  • “mailto”的六则应用技巧

    2008-08-29 13:16:00
  • Django安装配置mysql的方法步骤

    2024-01-21 19:18:08
  • ASP脚本变量、函数、过程和条件语句

    2008-10-14 14:43:00
  • Vue Element前端应用开发之整合ABP框架的前端登录

    2024-05-10 14:18:43
  • asp之家 网络编程 m.aspxhome.com