PHP - Função XMLReader :: getParserProperty ()
Definição e Uso
XML é uma linguagem de marcação para compartilhar os dados na web, XML é tanto para leitura humana quanto para máquina. A extensão XMLReader é usada para ler / recuperar o conteúdo de um documento XML, ou seja, usando os métodos da classe XMLReader, você pode ler cada nó de um documento XML.
o XMLReader::getParserProperty() A função da classe XMLReader aceita um valor inteiro que representa uma propriedade (opção do analisador) como um parâmetro e retorna TRUE se a propriedade especificada for definida no leitor XML atual.
Sintaxe
XMLReader::getParserProperty($property);
Parâmetros
Sr. Não | Parâmetro e Descrição |
---|---|
1 | property(Mandatory) Este é um valor inteiro que representa a propriedade / opção que você precisa definir. Pode ser um dos seguintes -
|
Valores Retornados
Esta função retorna um valor booleano que é TRUE em caso de sucesso e FALSE em caso de falha.
Versão PHP
Esta função foi introduzida pela primeira vez no PHP Versão 5 e funciona em todas as versões posteriores.
Exemplo
O exemplo a seguir demonstra o uso do XMLReader::getParserProperty() função -
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();
?>
Isso produzirá o seguinte resultado -
Property is set
Exemplo
A seguir está outro exemplo desta função -
<?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();
?>
Isso produzirá o seguinte resultado -
The SUBST_ENTITIES Property is set
The LOADDTD Property is set
The DEFAULTATTRS Property is set
The VALIDATE Property is set