php遍歷解析xml字符串的方法
更新時間:2016年05月05日 11:48:16 作者:西瓜霜
這篇文章主要介紹了php遍歷解析xml字符串的方法,涉及php基于SimpleXMLElement類實現(xiàn)對xml文件的讀取、遍歷與解析的相關技巧,非常簡單實用,需要的朋友可以參考下
本文實例講述了php遍歷解析xml字符串的方法。分享給大家供大家參考,具體如下:
<?php $content = <<<XML <?xml version="1.0" encoding="UTF-8"?> <test> <global_setting> <ping_protocol>HTTP</ping_protocol> <ping_port>80</ping_port> <ping_path>/index.html</ping_path> <response_timeout>5000</response_timeout> <health_check_interval>3000</health_check_interval> <unhealthy_threshold>2</unhealthy_threshold> <healthy_threshold>3</healthy_threshold> </global_setting> <instances> <instance ip="192.168.234.121"/> <instance ip="192.168.234.28"/> </instances> </test> XML; $test = new SimpleXMLElement($content); //獲得ping_protocol的值 $ping_protocol = $test->global_setting->ping_protocol; echo "ping_protocol : $ping_protocol \n"; //打印出所有instance的IP foreach ( $test->instances->instance as $instance) { echo "IP: {$instance['ip']} \n" ; } //這里經過測試,發(fā)現(xiàn)使用var_dump之類的似乎不能有效輸出值,用echo比較順利, //還有就是上面的那個xml的例子可以去掉<?xml version="1.0" encoding="UTF-8"?> //也可以去掉頭尾///的<<<xml,然后當做普通字符串那樣對待,但是沒有測試中文等
更多關于PHP相關內容感興趣的讀者可查看本站專題:《PHP針對XML文件操作技巧總結》、《php日期與時間用法總結》、《php面向對象程序設計入門教程》、《PHP數(shù)組(Array)操作技巧大全》、《php字符串(string)用法總結》、《php+mysql數(shù)據(jù)庫操作入門教程》及《php常見數(shù)據(jù)庫操作技巧匯總》
希望本文所述對大家PHP程序設計有所幫助。
相關文章
在任意字符集下正常顯示網(wǎng)頁的方法二(續(xù))
在任意字符集下正常顯示網(wǎng)頁的方法二(續(xù))...2007-04-04php self,$this,const,static,->的使用
用php這么久了,慚愧的是,原來自己還一直沒分清楚這幾個關鍵字使用方法。2009-10-10