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


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



定義和用法

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

這個XMLReader::getAttributeNs()XMLReader 類的函數接受表示屬性名稱和命名空間 URI 的兩個字符串值,並返回其值。

用法

XMLReader::getAttributeNs($name, $URI);

參數

Sr.No 參數及說明
1

name(Mandatory)

這是一個表示屬性名稱的字符串值。

2

URI(Mandatory)

這是一個表示命名空間 URI 的字符串值。

返回值

此函數返回一個字符串值,表示指定屬性的值。如果指定的屬性不存在,則此函數返回 NULL。

PHP版本

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

示例

以下示例演示了 XMLReader::getAttributeNs() 函數的用法 -

data.xml

<?xml version="1.0" encoding="utf-8"?> 
<Employee xmlns:ns="testnamespace">
   <ns:Name ns:id = "name">Krishna</ns:Name>
   <ns:Age ns:id = "age">22</ns:Age>
   <ns:City ns:id = "city">Hyderabad</ns:City>   
   <ns:Phone ns:id = "phone">980000000</ns: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) { 
         $res = $reader->getAttributeNs('id', 'testnamespace'); 
         print($res."\n");
      }
   }
   //Closing the reader
   $reader->close();
?>

這將產生以下結果 -

name
age
city
phone

示例

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

test.xml

<data xmlns:ns="testnamespace"> 
   <ns:name ns:att = "test_attribute">Raju</ns: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();
   print($reader->getAttributeNS("att", "testnamespace")."\n");

   //Closing the reader
   $reader->close();
?>

這將產生以下結果 -

test_attribute

示例

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

   $data = "<data xmlns:ns = 'testnamespace'> 
      <ns:name ns:att = 'test_attribute'>Raju</ns: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();
   print($reader->getAttributeNs("att", "testnamespace")."\n");

   //Closing the reader
   $reader->close();
?>

這將產生以下結果 -

test_attribute

相關用法


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