欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

PHP registerXPathNamespace()函数讲解

程序员文章站 2022-03-20 13:53:40
php registerxpathnamespace() 函数 实例 为下一个 xpath 查询创建命名空间上下文:

php registerxpathnamespace() 函数

实例

为下一个 xpath 查询创建命名空间上下文:

<?php 
$xml=<<<xml
<book xmlns:chap="http://example.org/chapter-title"> 
<title>my book</title> 
<chapter id="1"> 
<chap:title>chapter 1</chap:title> 
<para>donec velit. nullam eget tellus...</para> 
</chapter> 
<chapter id="2"> 
<chap:title>chapter 2</chap:title> 
<para>lorem ipsum dolor sit amet....</para> 
</chapter> 
</book> 
xml;
$sxe=new simplexmlelement($xml); 
$sxe->registerxpathnamespace('c','http://example.org/chapter-title'); 
$result=$sxe->xpath('//c:title'); 
foreach ($result as $title) 
{ 
echo $title . "<br>"; 
} 
?>

定义和用法

registerxpathnamespace()函数为下一个 xpath 查询创建命名空间上下文。

如果在 xml 文档中改变命名空间前缀,这个函数很有用。registerxpathnamespace()函数将创建一个指定的命名空间前缀,使受影响的 xml 节点可以在不改变应用程序代码太多的情况下进行访问。

语法

registerxpathnamespace( _prefix_ , _ns_ );

PHP registerXPathNamespace()函数讲解

PHP registerXPathNamespace()函数讲解

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对的支持。如果你想了解更多相关内容请查看下面相关链接