您现在的位置是:网站首页> 编程资料编程资料
php 使用expat方式解析xml文件操作示例_php技巧_
2023-05-25
281人已围观
简介 php 使用expat方式解析xml文件操作示例_php技巧_
本文实例讲述了php 使用expat方式解析xml文件操作。分享给大家供大家参考,具体如下:
test.xml:
George John Reminder Don't forget the meeting!George2 John2 Reminder2 Don't forget the meeting!2
PHP文件:
"; break; case "TO": echo "To: "; break; case "FROM": echo "From: "; break; case "HEADING": echo "Heading: "; break; case "BODY": echo "Message: "; } } // Function to use at the end of an element function stop($parser, $element_name) { echo "
"; } // Function to use when finding character data function char($parser, $data) { echo $data; } // Specify element handler xml_set_element_handler($parser, "start", "stop"); // Specify data handler xml_set_character_data_handler($parser, "char"); // Open XML file // $fp = fopen("test.xml", "r"); // Read data // while ($data = fread($fp, 10)) { // xml_parse($parser, $data, feof($fp)) or die(sprintf("XML Error: %s at line %d", xml_error_string(xml_get_error_code($parser)), xml_get_current_line_number($parser))); // } // fclose($fp); $data = file_get_contents("test.xml"); xml_parse($parser, $data) or die(sprintf("XML Error: %s at line %d", xml_error_string(xml_get_error_code($parser)), xml_get_current_line_number($parser))); // Free the XML parser xml_parser_free($parser); ?>运行结果:
-- Note --
To: George
From: John
Heading: Reminder
Message: Don't forget the meeting!-- Note --
To: George2
From: John2
Heading: Reminder2
Message: Don't forget the meeting!2
PS:这里再为大家提供几款关于xml操作的在线工具供大家参考使用:
在线XML/JSON互相转换工具:
http://tools.jb51.net/code/xmljson
在线格式化XML/在线压缩XML:
http://tools.jb51.net/code/xmlformat
XML在线压缩/格式化工具:
http://tools.jb51.net/code/xml_format_compress
XML代码在线格式化美化工具:
http://tools.jb51.net/code/xmlcodeformat
更多关于PHP相关内容感兴趣的读者可查看本站专题:《PHP针对XML文件操作技巧总结》、《PHP数组(Array)操作技巧大全》、《php字符串(string)用法总结》、《php面向对象程序设计入门教程》、《php+mysql数据库操作入门教程》及《php常见数据库操作技巧汇总》
希望本文所述对大家PHP程序设计有所帮助。
相关内容
- thinkphp框架类库扩展操作示例_php实例_
- 如何在Laravel5.8中正确地应用Repository设计模式_php实例_
- PHP 进程池与轮询调度算法实现多任务的示例代码_php实例_
- PHP PDO和消息队列的个人理解与应用实例分析_php技巧_
- Laravel Eloquent分表方法并使用模型关联的实现_php实例_
- PHP call_user_func和call_user_func_array函数的简单理解与应用分析_php技巧_
- 使用Git实现Laravel项目的自动化部署_php实例_
- PhpStorm 如何优雅的调试Hyperf的方法步骤_php实例_
- laravel框架中视图的基本使用方法分析_php实例_
- laravel框架中表单请求类型和CSRF防护实例分析_php实例_
