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


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



定义和用法

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

这个XMLReader::XML()XMLReader 类的函数接受一个表示 XML 文档内容的字符串值作为参数并读取/解析它。

用法

XMLReader::xml($data [$encoding, $options]);

参数

Sr.No 参数及说明
1

data(Mandatory)

这是一个表示 XML 文档内容的字符串值。

2

encoding(Mandatory)

这是一个表示编码或 Null 的字符串值。

3

options(Optional)

这是一个表示位掩码的整数值。

返回值

此函数返回一个布尔值,成功时为 TRUE,失败时为 FALSE。当您静态调用此函数时,它会在成功时返回一个 XMLReader 对象,在失败时返回 FALSE。

PHP版本

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

示例

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

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

   $data = "<Data>
      <Employee>
         <Name>Krishna</Name>
         <Age>22</Age>
         <City>Hyderabad</City>   
      </Employee>

      <Employee>
         <Name>Raju</Name>
         <Age>30</Age>
         <City>Delhi</City>
      </Employee>
   </Data>"; 

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

   //Reading the contents of the XML file
   while($reader->next()){
      print($reader->readString());
   }
   
   //Closing the reader
   $reader->close();
?>

这将产生以下结果 -

Krishna
22
Hyderabad

Raju
30
Delhi

示例

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

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

   $data = "<Tutorials>
     <Tutorial>
         <Name>JavaFX</Name>
         <Pages>535</Pages>
         <Author>Krishna</Author>
         <Version>11</Version>
      </Tutorial>

      <Tutorial>
         <Name>CoffeeScript</Name>
         <Pages>235</Pages>
         <Author>Kasyap</Author>
         <Version>2.5.1</Version>
      </Tutorial>
   </Tutorials>";

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

   //Reading the contents
   $reader->read();

   $data = $reader->readInnerXml();
   print($data);

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

这将产生以下结果 -

<Tutorial>
   <Name>JavaFX</Name>
   <Pages>535</Pages>
   <Author>Krishna</Author>
   <Version>11</Version>
</Tutorial>

<Tutorial>
   <Name>CoffeeScript</Name>
   <Pages>235</Pages>
   <Author>Kasyap</Author>
   <Version>2.5.1</Version>
</Tutorial>

示例

以下是带有可选参数的此函数的示例 -

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

   $data = "<data> 
      <name>Raju</name> 
      <age>32</age> 
      <phone>9848022338</phone> 
      <city>Hyderabad</city>
   </data> ";

   //Opening a reader
   $reader->xml($data, "UTF-8");

   //Reading the contents
   $reader->read();

   $data = $reader->expand();
   print_r($data);

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

这将产生以下结果 -

DOMElement Object (
   [tagName] => data
   [schemaTypeInfo] =>
   [nodeName] => data
   [nodeValue] =>
   Raju
   32
   9848022338
   Hyderabad

   [nodeType] => 1
   [parentNode] =>
   [childNodes] => (object value omitted)
   [firstChild] => (object value omitted)
   [lastChild] => (object value omitted)
   [previousSibling] =>
   [nextSibling] =>
   [attributes] => (object value omitted)
   [namespaceURI] =>
   [prefix] =>
   [localName] => data
   [baseURI] =>
   [textContent] =>
   Raju
   32
   9848022338
   Hyderabad
)

相关用法


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