php遍历解析xml字符串的方法
更新时间:2016年05月05日 11:48:16 作者:西瓜霜
这篇文章主要介绍了php遍历解析xml字符串的方法,涉及php基于SimpleXMLElement类实现对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" ; } //这里经过测试,发现使用var_dump之类的似乎不能有效输出值,用echo比较顺利, //还有就是上面的那个xml的例子可以去掉<?xml version="1.0" encoding="UTF-8"?> //也可以去掉头尾///的<<<xml,然后当做普通字符串那样对待,但是没有测试中文等
更多关于PHP相关内容感兴趣的读者可查看本站专题:《PHP针对XML文件操作技巧总结》、《php日期与时间用法总结》、《php面向对象程序设计入门教程》、《PHP数组(Array)操作技巧大全》、《php字符串(string)用法总结》、《php+mysql数据库操作入门教程》及《php常见数据库操作技巧汇总》
希望本文所述对大家PHP程序设计有所帮助。
相关文章
dir()、readdir()、scandir()和glob()四种遍历目录方法及性能分析
php遍历目录和文件的场景在很多时候都能用到,遍历目录方法的方法有好几种,那么应该使用哪种方法呢?下面介绍dir()、readdir()、scandir()和glob()四种遍历目录方法及性能分析。2022-12-12php array_intersect比array_diff快(附详细的使用说明)
在PHP中,使用 array_intersect 求两个数组的交集比使用 array_diff 求同样两个数组的并集要快。2011-07-07PHP基于闭包思想实现的BT(torrent)文件解析工具实例详解
这篇文章主要介绍了PHP基于闭包思想实现的BT(torrent)文件解析工具,结合具体实例形式分析了php针对torrent文件的读取与解析相关操作技巧,需要的朋友可以参考下2017-08-08
最新评论