> 백엔드 개발 > PHP 튜토리얼 > 如何正确运用PHP XMLReader解析XML文档_PHP教程

如何正确运用PHP XMLReader解析XML文档_PHP教程

WBOY
풀어 주다: 2016-07-15 13:31:47
원래의
978명이 탐색했습니다.

我们在运用

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写入变量,最后输出。


www.bkjia.comtruehttp://www.bkjia.com/PHPjc/446186.htmlTechArticle我们在运用 PHP XMLReader的代码示例如下: ?PHP header(Content-type:text/html; Charset = utf -8); $ url = http://www.google.com/ ig/api?weather=shenzhen ; //加载XML内容...
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿