主頁 > 知識(shí)庫 > php 使用expat方式解析xml文件操作示例

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

熱門標(biāo)簽:欣思維地圖標(biāo)注 高德地圖標(biāo)注位置怎么標(biāo)注 江西電銷機(jī)器人收費(fèi) 電銷機(jī)器人沒有效果怎么樣 天潤融通外呼系統(tǒng)好嗎 杭州語音電銷機(jī)器人 江門回?fù)芡夂粝到y(tǒng) 高德地圖標(biāo)注店鋪收費(fèi)嗎 泊頭在哪里辦理400電話

本文實(shí)例講述了php 使用expat方式解析xml文件操作。分享給大家供大家參考,具體如下:

test.xml:

?xml version="1.0" encoding="UTF-8"?>
notes>
 note>
 to>George/to>
 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 parser
$parser = xml_parser_create();
// Function to use at the start of an element
function start($parser, $element_name, $element_attrs)
{
  switch ($element_name) {
    case "NOTE":
      echo "-- Note --br />";
      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 "br />";
}
// 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);
?>

運(yùn)行結(jié)果:

-- 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:這里再為大家提供幾款關(guān)于xml操作的在線工具供大家參考使用:

在線XML/JSON互相轉(zhuǎn)換工具:
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

更多關(guān)于PHP相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《PHP針對XML文件操作技巧總結(jié)》、《PHP數(shù)組(Array)操作技巧大全》、《php字符串(string)用法總結(jié)》、《php面向?qū)ο蟪绦蛟O(shè)計(jì)入門教程》、《php+mysql數(shù)據(jù)庫操作入門教程》及《php常見數(shù)據(jù)庫操作技巧匯總》

希望本文所述對大家PHP程序設(shè)計(jì)有所幫助。

您可能感興趣的文章:
  • linux下php安裝xml擴(kuò)展的詳細(xì)步驟
  • php實(shí)現(xiàn)的數(shù)組轉(zhuǎn)xml案例分析
  • PHP讀取XML文件的方法實(shí)例總結(jié)【DOMDocument及simplexml方法】
  • PHP創(chuàng)建XML的方法示例【基于DOMDocument類及SimpleXMLElement類】
  • 使用php操作xml教程

標(biāo)簽:大同 江門 雙鴨山 駐馬店 內(nèi)江 深圳 石嘴山 巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《php 使用expat方式解析xml文件操作示例》,本文關(guān)鍵詞  php,使用,expat,方式,解析,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。

  • 相關(guān)文章
  • 下面列出與本文章《php 使用expat方式解析xml文件操作示例》相關(guān)的同類信息!
  • 本頁收集關(guān)于php 使用expat方式解析xml文件操作示例的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章