亚洲最大看欧美片,亚洲图揄拍自拍另类图片,欧美精品v国产精品v呦,日本在线精品视频免费

  • 站長(zhǎng)資訊網(wǎng)
    最全最豐富的資訊網(wǎng)站

    php實(shí)現(xiàn)利用expat方式解析xml文件

    php實(shí)現(xiàn)利用expat方式解析xml文件

    本文實(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文件:(免費(fèi)學(xué)習(xí)視頻教程分享: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); ?>

    相關(guān)文章教程推薦:php教程

    贊(0)
    分享到: 更多 (0)
    網(wǎng)站地圖   滬ICP備18035694號(hào)-2    滬公網(wǎng)安備31011702889846號(hào)