定义和用法
XML 是一种 mark-up 语言,用于在网络上共享数据,XML 用于人类 read-able 和机器 read-able。 XMLReader 扩展用于读取/检索 XML 文档的内容,即使用 XMLReader 类的方法可以读取 XML 文档的每个节点。
这个XMLReader::expand()XMLReader 类的函数复制当前节点的内容并将其作为 DOM 对象返回。
用法
XMLReader::expand([$base]);
参数
Sr.No | 参数及说明 |
---|---|
1 |
base(Mandatory) 这是代表目标文档的 DOMNode 类的对象。 |
返回值
这个函数返回一个 DOMNode 类的对象。如果有问题,它返回布尔值 FALSE。
PHP版本
这个函数最初是在 PHP 版本 5 中引入的,并且适用于所有后续版本。
示例
以下是带有可选参数的此函数的示例 -
data.xml
<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->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
//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);
//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 )
示例
mydata.xml
<data>
<name>Raju</name>
<age>32</age>
<phone>9848022338</phone>
<city>Hyderabad</city>
</data>
sample.php
<?php
//Creating an XMLReader
$reader = new XMLReader();
//Opening a reader
$reader->open("test.xml");
//Reading the contents
$reader->read();
$ele = $reader->expand();
$doc = new DOMDocument();
$doc->appendChild($ele);
$res = $doc->saveXML();
print_r($res);
//Closing the reader
$reader->close();
?>
这将产生以下结果 -
<?xml version="1.0"?> <data> <name>Raju</name> <age>32</age> <phone>9848022338</phone> <city>Hyderabad</city> </data>
相关用法
- PHP XMLReader::getParserProperty()用法及代码示例
- PHP XMLReader::open()用法及代码示例
- PHP XMLReader::moveToAttributeNs()用法及代码示例
- PHP XMLReader::moveToNextAttribute()用法及代码示例
- PHP XMLReader::moveToAttribute()用法及代码示例
- PHP XMLReader::next()用法及代码示例
- PHP XMLReader::setParserProperty()用法及代码示例
- PHP XMLReader::lookupNamespace()用法及代码示例
- PHP XMLReader::moveToElement()用法及代码示例
- PHP XMLReader::moveToAttributeNo()用法及代码示例
- PHP XMLReader::getAttributeNs()用法及代码示例
- PHP XMLReader::XML()用法及代码示例
- PHP XMLReader::isValid()用法及代码示例
- PHP XMLReader::read()用法及代码示例
- PHP XMLReader::readOuterXml()用法及代码示例
- PHP XMLReader::moveToFirstAttribute()用法及代码示例
- PHP XMLReader readOuterXml()用法及代码示例
- PHP XMLReader setRelaxNGSchema()用法及代码示例
- PHP XMLReader getAttributeNo()用法及代码示例
- PHP XMLReader getParserProperty()用法及代码示例
注:本文由纯净天空筛选整理自 PHP - XMLReader::expand() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。