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


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



定義和用法

XML 是一種 mark-up 語言,用於在網絡上共享數據,XML 用於人類 read-able 和機器 read-able。 XMLReader 擴展用於讀取/檢索 XML 文檔的內容,即使用 XMLReader 類的方法可以讀取 XML 文檔的每個節點。

這個XMLReader::moveToAttribute()XMLReader 類的函數接受表示屬性名稱的字符串值並將光標移動到指定的屬性。

用法

XMLReader::moveToAttribute($name);

參數

Sr.No 參數及說明
1

name(Mandatory)

此函數返回一個布爾值,成功時為 TRUE,失敗時為 FALSE。

返回值

此函數返回一個布爾值,成功時為 TRUE,失敗時為 FALSE。

PHP版本

這個函數最初是在 PHP 版本 5 中引入的,並且適用於所有後續版本。

示例

下麵的例子演示了XMLReader::moveToAttribute()函數 -

data.xml

<Employee>
   <Name id = "name">Krishna</Name>
   <Age id = "age">22</Age>
   <City id = "city">Hyderabad</City>   
   <Phone id = "phone">980000000</Phone>   
</Employee>

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->read()){
      if ($reader->nodeType == XMLREADER::ELEMENT) { 
         $reader->moveToAttribute('id2'); 
         print($reader->value."\n");
      }
   }
   //Closing the reader
   $reader->close();
?>

這將產生以下結果 -

age

示例

以下是此函數的另一個示例 -

test.xml

<data> 
   <name att = "test_attribute">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->next();
   $reader->read();
   $reader->next();
   $reader->moveToAttribute("att");
   print($reader->value."\n");
   
   //Closing the reader
   $reader->close();
?>

這將產生以下結果 -

test_attribute

示例

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

   $data = "<data> 
      <name att = 'test_attribute'>Raju</name> 
      <age>32</age> 
      <phone>9848022338</phone> 
      <city>Hyderabad</city>
   </data> ";

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

   //Reading the contents
   $reader->next();
   $reader->read();
   $reader->next();
   $reader->moveToAttribute("att");
   print($reader->value."\n");
   
   //Closing the reader
   $reader->close();
?>

這將產生以下結果 -

test_attribute

相關用法


注:本文由純淨天空篩選整理自 PHP - XMLReader::moveToAttribute() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。