php 解析XML文檔

來源:互聯網
上載者:User
<?php// 處理開始元素函數function startElementHandler($parser, $element, $attributes) {echo "元素開始:".$element."<br>";if($attributes) {echo "屬性:";foreach ( $attributes as $key => $value ) {    echo $key."=".$value." ";}echo "<br>";}}// 處理結束元素函數function endElementHandler($parser, $element) {echo "元素結束:".$element."<br><br>";}// 處理字串資料函數function characterDataHandler($parser, $data) {if(trim($data)) {echo "字串資料:".htmlspecialchars($data)."<br>";}}// 處理解析錯誤函數function parserError($parser) {$code = xml_get_error_code($parser);$error = xml_error_string($code);$errorColumn = xml_get_current_column_number($parser);$errorLine = xml_get_current_line_number($parser);return "錯誤碼:".$code." 錯誤:".$error."在第".$errorLine."行第".$errorColumn."列";}// 建立解析器$parser = xml_parser_create();// 註冊元素處理函數xml_set_element_handler($parser, "startElementHandler", "endElementHandler");xml_set_character_data_handler($parser, "characterDataHandler");// 擷取檔案內容$xml = file_get_contents("parser.xml");// 開始解析parser.xml文檔,解析錯誤就調用錯誤處理函數xml_parse($parser, $xml) or die(parserError());// 刪除解析器並釋放記憶體xml_parser_free($parser);?>
  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.