程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> 如何正確運用PHP XMLReader解析XML文檔

如何正確運用PHP XMLReader解析XML文檔

編輯:關於PHP編程

我們在運用

PHP XMLReader的代碼示例如下:

  1. < ?PHP  
  2. header("Content-type:text/html;
     Charset=utf-8");  
  3. $url = "http://www.google.com/
    ig/api?weather=shenzhen";  
  4. // 加載XML內容  
  5. $xml = new XMLReader();  
  6. $xml->open($url);  
  7. $condition = '';  
  8. $temp_c = '';  
  9. while ($xml->read()) {  
  10. // echo $xml->name, "==>", 
    $xml->depth, "<br>";  
  11. if (!empty($condition) 
    && !empty($temp_c)) {  
  12. break;  
  13. }  
  14. if ($xml->name == 'condition' 
    && empty($condition)) {   
  15. // 取第一個condition  
  16. $condition = $xml->getAttribute('data');  
  17. }  
  18. if ($xml->name == 'temp_c' &&
     empty($temp_c)) {   
  19. // 取第一個temp_c  
  20. $temp_c = $xml->getAttribute('data');  
  21. }  
  22. $xml->read();  
  23. }  
  24. $xml->close();  
  25. echo '天氣:', $condition, '< br />';  
  26. echo '溫度:', $temp_c, '< br />';  

我們只是需要運用PHP XMLReader取第一個condition和第一個temp_c,於是遍歷所有的節點,將遇到的第一個condition和第一個temp_c寫入變量,最後輸出。


  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved