定义和用法
XML 是一种 mark-up 语言,用于在网络上共享数据,XML 用于人类 read-able 和机器 read-able。 XMLReader 扩展用于读取/检索 XML 文档的内容,即使用 XMLReader 类的方法可以读取 XML 文档的每个节点。
这个XMLReader::getParserProperty()XMLReader 类的函数接受一个表示属性(解析器选项)的整数值作为参数,如果在当前 XML 阅读器上设置了指定的属性,则返回 TRUE。
用法
XMLReader::getParserProperty($property);
参数
Sr.No | 参数及说明 |
---|---|
1 |
property(Mandatory) 这是一个整数值,表示您需要设置的属性/选项。它可以是以下之一 -
|
返回值
此函数返回一个布尔值,成功时为 TRUE,失败时为 FALSE。
PHP版本
这个函数最初是在 PHP 版本 5 中引入的,并且适用于所有后续版本。
示例
下面的例子演示了XMLReader::getParserProperty()函数 -
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");
//Setting the parser property
$reader->setParserProperty(XMLReader::VALIDATE, true);
$bool = $reader->getParserProperty(XMLReader::VALIDATE);
if ($bool) {
print("Property is set");
}
//Closing the reader
$reader->close();
?>
这将产生以下结果 -
Property is set
示例
以下是此函数的另一个示例 -
<?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);
//Setting the parser property
$reader->setParserProperty(XMLReader::SUBST_ENTITIES, true);
$reader->setParserProperty(XMLReader::LOADDTD, true);
$reader->setParserProperty(XMLReader::DEFAULTATTRS, true);
$reader->setParserProperty(XMLReader::VALIDATE, true);
$bool1 = $reader->getParserProperty(XMLReader::SUBST_ENTITIES);
if ($bool1) {
print("The SUBST_ENTITIES Property is set \n");
}
$bool1 = $reader->getParserProperty(XMLReader::LOADDTD);
if ($bool1) {
print("The LOADDTD Property is set \n");
} $bool1 = $reader->getParserProperty(XMLReader::DEFAULTATTRS);
if ($bool1) {
print("The DEFAULTATTRS Property is set \n");
} $bool1 = $reader->getParserProperty(XMLReader::VALIDATE);
if ($bool1) {
print("The VALIDATE Property is set");
}
//Closing the reader
$reader->close();
?>
这将产生以下结果 -
The SUBST_ENTITIES Property is set The LOADDTD Property is set The DEFAULTATTRS Property is set The VALIDATE Property is set
相关用法
- PHP XMLReader::getAttributeNs()用法及代码示例
- PHP XMLReader::open()用法及代码示例
- PHP XMLReader::moveToAttributeNs()用法及代码示例
- PHP XMLReader::moveToNextAttribute()用法及代码示例
- PHP XMLReader::moveToAttribute()用法及代码示例
- PHP XMLReader::next()用法及代码示例
- PHP XMLReader::setParserProperty()用法及代码示例
- PHP XMLReader::expand()用法及代码示例
- PHP XMLReader::lookupNamespace()用法及代码示例
- PHP XMLReader::moveToElement()用法及代码示例
- PHP XMLReader::moveToAttributeNo()用法及代码示例
- 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::getParserProperty() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。