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


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



定义和用法

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

这个XMLReader::open()XMLReader 类的函数接受一个字符串值,表示要读取其内容的 XML 文档的绝对路径。

用法

XMLReader::open ($URI [$encoding, $options]);

参数

Sr.No 参数及说明
1

URI(Mandatory)

这是一个字符串值,表示 XML 文档的路径。

2

encoding(Mandatory)

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

3

options(Optional)

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

返回值

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

PHP版本

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

示例

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

data.xml

<Data>
   <Employee>
      <Name>Krishna</Name>
      <Age>22</Age>
      <City>Hyderabad</City>   
   </Employee>

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

sample.php

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

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

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

这将产生以下结果 -

Krishna
22
Hyderabad

Raju
30
Delhi

示例

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

mydata.xml

<?xml version="1.0" encoding="utf-8"?>
<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>

sample.php

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

   //Opening a reader
   $reader->open("mydata.xml");

   //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>

示例

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

mydata.xml

<?xml version="1.0" encoding="utf-8"?>
<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>

sample.php

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

   //Opening a reader
   $reader->open("mydata.xml", "UTF-8");

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

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

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

这将产生以下结果 -

DOMElement Object (
   [tagName] => Tutorials
   [schemaTypeInfo] =>
   [nodeName] => Tutorials
   [nodeValue] =>

   JavaFX
   535
   Krishna
   11

   CoffeeScript
   235
   Kasyap
   2.5.1

   [nodeType] => 1
   [parentNode] =>
   [childNodes] => (object value omitted)
   [firstChild] => (object value omitted)
   [lastChild] => (object value omitted)
   [previousSibling] =>
   [nextSibling] =>
   [attributes] => (object value omitted)
   [namespaceURI] =>
   [prefix] =>
   [localName] => Tutorials
   [baseURI] =>
   [textContent] =>

   JavaFX
   535
   Krishna
   11

   CoffeeScript
   235
   Kasyap
   2.5.1
)

相关用法


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