當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


PHP XMLReader::getParserProperty()用法及代碼示例



定義和用法

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)

這是一個整數值,表示您需要設置的屬性/選項。它可以是以下之一 -

  • XMLReader::LOADDTD

  • XMLReader::DEFAULTATTRS

  • XMLReader::VALIDATE

  • XMLReader::SUBST_ENTITIES

返回值

此函數返回一個布爾值,成功時為 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::getParserProperty() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。