" />

"/>
 首页 > 作文

php 使用expat方式解析xml文件操作示例

更新时间:2023-04-08 05:16:28 阅读: 评论:0

本文实例讲述了php 使用expat方式解析xml文件操作。分享给大家供大家参考,具体如下:

test.xml:

<?xml version="1.0" encoding="utf-8"?><notes> <note> <to>george</to> relevant<from>john</from> <heading>reminder</heading> <body>don't forget the meeting!</body> </note> <note> <to>george2</to> <from>john2</from> <heading>reminder2</heading> <body>don't forget the meeting!2</body> </note> <instances> <instance st="192.168.234.121" /> <差强人意意思instance st="192.168.234.28" /> </instances></notes>

php文件:

<?php// initialize the xml parr$parr = xml_parr_create();// function to u at the start of an elementfunction start($parr, $element_name,万圣节是什么时候 $element_attrs){  switch ($element_name) {    ca "note":      echo "-- note --<br />";      break;    ca "to":      echo "to: ";      break;    ca "from":      echo "from: ";      break;    ca "heading":      echo "heading: ";      break;    ca "body":      echo "message: ";  }}// function to u at the end of an elementfunction stop($parr, $element_name){  echo "<br />";}// function to u when finding character datafunction char($parr, $data){  echo $data;}// specify element handlerxml_t_element_handler($parr, "start", "stop");// specify data handlerxml_t_character_data_handler($parr, "char");// open xml file// $fp = fopen("test.xml", "r");// read data// while ($data = fread($fp, 10)) {// xml_par($parr, $data, feof($fp)) or die(sprintf("xml error: %s at line %d", xml_error_string(xml_get_error_code($parr)), xml_get_current_line_number($parr)));// }// fclo($fp);$data = file_get_contents("test.xml");xml_par($parr, $data) or die(sprintf("xml error: %s at line %d", xml_error_string(xml_get_error_code($parr)), xml_get_current_line_number($parr)));// free the xml parrxml_parr_free($parr);?>

运行结果:

— note —
to: george
from: john
heading: reminder
message: don高考常考成语217;t forget the meeting!

— note —
to: george2
from: john2
heading: reminder2
message: don’t forget the meeting!2

ps:这里再为大家提供几款关于xml操作的在线工具供大家参考使用:

在线xml/json互相转换工具:

在线格式化xml/在线压缩xml

xml在线压缩/格式化工具:

沈阳大学怎么样xml代码在线格式化美化工具:

本文发布于:2023-04-08 05:16:26,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/zuowen/f246dba493c63086bf5469dc52ff9216.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

本文word下载地址:php 使用expat方式解析xml文件操作示例.doc

本文 PDF 下载地址:php 使用expat方式解析xml文件操作示例.pdf

标签:在线   工具   操作   文件
相关文章
留言与评论(共有 0 条评论)
   
验证码:
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图
  • 我要关灯
    我要开灯
  • 返回顶部