当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP XMLReader::lookupNamespace()用法及代码示例



定义和用法

XML 是一种 mark-up 语言,用于在网络上共享数据,XML 用于人类 read-able 和机器 read-able。 XMLReader 扩展用于读取/检索 XML 文档的内容,即使用 XMLReader 类的方法可以读取 XML 文档的每个节点。

这个XMLReader::lookupNamespace()XMLReader 类的函数接受一个表示命名空间前缀的字符串值,并在给定前缀的范围命名空间中查找。

用法

XMLReader::lookupNamespace($prefix);

参数

Sr.No 参数及说明
1

prefix(Mandatory)

这是一个表示属性名称的字符串值。

返回值

此函数返回一个布尔值,如果成功则为 TRUE,如果失败则为 FALSE。

PHP版本

这个函数最初是在 PHP 版本 5 中引入的,并且适用于所有后续版本。

示例

下面的例子演示了XMLReader::lookupNamespace()函数 -

data.xml

<?xml version="1.0" encoding="utf-8"?> 
<Employee xmlns:ns="testnamespace">
   <ns:Name ns:id = "name">Krishna</ns:Name>
   <ns:Age ns:id = "age">22</ns:Age>
   <ns:City ns:id = "city">Hyderabad</ns:City>   
   <ns:Phone ns:id = "phone">980000000</ns:Phone>   
</Employee>

sample.php

<?php
   //Creating an XMLReader
   $reader = new XMLReader();

   //Opening a reader
   $reader->open('trail.xml');

   //reading the contents of the node
   $reader->read();
   $res = $reader->lookupNamespace("ns"); 
   print("Name space:".$res);
   
   //Closing the reader
   $reader->close();
?>

这将产生以下结果 -

Name space:testnamespace

示例

以下是此函数的另一个示例 -

<?php
   //Creating an XMLReader
   $reader = new XMLReader();

   $data = "<data xmlns:ns='testnamespace'> 
      <ns:name ns:att = 'test_attribute'>Raju</ns:name> 
      <age>32</age> 
      <phone>9848022338</phone> 
      <city>Hyderabad</city>
   </data>";

   //Opening a reader
   $reader->xml($data);

   //reading the contents of the node
   $reader->read();
   $res = $reader->lookupNamespace("ns"); 
   print("Name space:".$res);

   //Closing the reader
   $reader->close();

   //Closing the reader
   $reader->close();
?>

这将产生以下结果 -

Name space:testnamespace

相关用法


注:本文由纯净天空筛选整理自 PHP - XMLReader::lookupNamespace() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。