定義和用法
XML 是一種 mark-up 語言,用於在網絡上共享數據,XML 用於人類 read-able 和機器 read-able。 XMLReader 擴展用於讀取/檢索 XML 文檔的內容,即使用 XMLReader 類的方法可以讀取 XML 文檔的每個節點。
這個XMLReader::moveToNextAttribute()XMLReader 類的函數將光標移動到 XML 文檔中的下一個屬性。
用法
XMLReader::moveToAttribute();
參數
該函數不接受任何參數。
返回值
此函數返回一個布爾值,成功時為 TRUE,失敗時為 FALSE。
PHP版本
這個函數最初是在 PHP 版本 5 中引入的,並且適用於所有後續版本。
示例
下麵的例子演示了XMLReader::moveToNextAttribute()函數 -
data.xml
<Employee>
<Name id1 = "attr_name">Krishna</Name>
<Age id2 = "attr_age">22</Age>
<City id3 = "attr_city">Hyderabad</City>
<Phone id4 = "attr_phone">980000000</Phone>
</Employee>
sample.php
<?php
//Creating an XMLReader
$reader = new XMLReader();
//Opening a reader
$reader->open("trail.xml");
//Reading the contents of the XML file
$reader->read();
$reader->read();
$reader->read();
if ($reader->nodeType == XMLREADER::ELEMENT) {
$reader->moveToFirstAttribute();
print($reader->name."\n");
$reader->moveToNextAttribute();
print($reader->name."\n");
}
//Closing the reader
$reader->close();
?>
這將產生以下結果 -
name_attr1 name_attr2
示例
以下是此函數的另一個示例 -
<?php
//Creating an XMLReader
$reader = new XMLReader();
$data = "<Employee>
<Name name_attr1 = 'n_val1' name_attr2 = 'n_val2'>Krishna</Name>
<Age>22</Age>
<City>Hyderabad</City>
<Phone>980000000</Phone>
</Employee>";
//Opening a reader
$reader->xml($data);
//Reading the contents of the XML file
$reader->read();
$reader->read();
$reader->read();
$reader->moveToFirstAttribute();
print($reader->name."\n");
$reader->moveToNextAttribute();
print($reader->name."\n");
//Closing the reader
$reader->close();
?>
這將產生以下結果 -
name_attr1 name_attr2
相關用法
- PHP XMLReader::moveToAttributeNs()用法及代碼示例
- PHP XMLReader::moveToAttribute()用法及代碼示例
- PHP XMLReader::moveToElement()用法及代碼示例
- PHP XMLReader::moveToAttributeNo()用法及代碼示例
- PHP XMLReader::moveToFirstAttribute()用法及代碼示例
- PHP XMLReader::getParserProperty()用法及代碼示例
- PHP XMLReader::open()用法及代碼示例
- PHP XMLReader::next()用法及代碼示例
- PHP XMLReader::setParserProperty()用法及代碼示例
- PHP XMLReader::expand()用法及代碼示例
- PHP XMLReader::lookupNamespace()用法及代碼示例
- PHP XMLReader::getAttributeNs()用法及代碼示例
- PHP XMLReader::XML()用法及代碼示例
- PHP XMLReader::isValid()用法及代碼示例
- PHP XMLReader::read()用法及代碼示例
- PHP XMLReader::readOuterXml()用法及代碼示例
- PHP XMLReader readOuterXml()用法及代碼示例
- PHP XMLReader setRelaxNGSchema()用法及代碼示例
- PHP XMLReader getAttributeNo()用法及代碼示例
- PHP XMLReader getParserProperty()用法及代碼示例
注:本文由純淨天空篩選整理自 PHP - XMLReader::moveToNextAttribute() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。