PHP解析xml格式資料工具類樣本講解

來源:互聯網
上載者:User
這篇文章主要介紹了PHP解析xml格式資料工具類,涉及php針對xml格式資料節點添加、擷取、解析等相關操作技巧,需要的朋友可以參考下

本文執行個體講述了PHP解析xml格式資料工具類。分享給大家供大家參考,具體如下:

class ome_xml {  /**  * xml資源  *  * @var    resource  * @see    xml_parser_create()  */  public $parser;  /**  * 資源編碼  *  * @var    string  */  public $srcenc;  /**  * target encoding  *  * @var    string  */  public $dstenc;  /**  * the original struct  *  * @access  private  * @var    array  */  public $_struct = array();  /**  * Constructor  *  * @access    public  * @param    mixed    [$srcenc] source encoding  * @param    mixed    [$dstenc] target encoding  * @return    void  * @since  */  function SofeeXmlParser($srcenc = null, $dstenc = null) {    $this->srcenc = $srcenc;    $this->dstenc = $dstenc;    // initialize the variable.    $this->parser = null;    $this->_struct = array();  }  /**  * Parses the XML file  *  * @access    public  * @param    string    [$file] the XML file name  * @return    void  * @since  */  function xml2array($file) {    //$this->SofeeXmlParser('utf-8');  $data = file_get_contents($file);    $this->parseString($data);    return $this->getTree();  }  function xml3array($file){  $data = file_get_contents($file);  $this->parseString($data);  return $this->_struct;  }  /**  * Parses a string.  *  * @access    public  * @param    string    data XML data  * @return    void  */  function parseString($data) {    if ($this->srcenc === null) {      $this->parser = xml_parser_create();    } else {      if($this->parser = xml_parser_create($this->srcenc)) {        return 'Unable to create XML parser resource with '. $this->srcenc .' encoding.';      }    }    if ($this->dstenc !== null) {      @xml_parser_set_option($this->parser, XML_OPTION_TARGET_ENCODING, $this->dstenc) or die('Invalid target encoding');    }    xml_parser_set_option($this->parser, XML_OPTION_CASE_FOLDING, 0);  // lowercase tags    xml_parser_set_option($this->parser, XML_OPTION_SKIP_WHITE, 1);    // skip empty tags    if (!xml_parse_into_struct($this->parser, $data, $this->_struct)) {      /*printf("XML error: %s at line %d",          xml_error_string(xml_get_error_code($this->parser)),          xml_get_current_line_number($this->parser)      );*/      $this->free();      return false;    }    $this->_count = count($this->_struct);    $this->free();  }  /**  * return the data struction  *  * @access    public  * @return    array  */  function getTree() {    $i = 0;    $tree = array();    $tree = $this->addNode(      $tree,      $this->_struct[$i]['tag'],      (isset($this->_struct[$i]['value'])) ? $this->_struct[$i]['value'] : '',      (isset($this->_struct[$i]['attributes'])) ? $this->_struct[$i]['attributes'] : '',      $this->getChild($i)    );    unset($this->_struct);    return $tree;  }  /**  * recursion the children node data  *  * @access    public  * @param    integer    [$i] the last struct index  * @return    array  */  function getChild(&$i) {    // contain node data    $children = array();    // loop    while (++$i < $this->_count) {      // node tag name      $tagname = $this->_struct[$i]['tag'];      $value = isset($this->_struct[$i]['value']) ? $this->_struct[$i]['value'] : '';      $attributes = isset($this->_struct[$i]['attributes']) ? $this->_struct[$i]['attributes'] : '';      switch ($this->_struct[$i]['type']) {        case 'open':          // node has more children          $child = $this->getChild($i);          // append the children data to the current node          $children = $this->addNode($children, $tagname, $value, $attributes, $child);          break;        case 'complete':          // at end of current branch          $children = $this->addNode($children, $tagname, $value, $attributes);          break;        case 'cdata':          // node has CDATA after one of it's children          $children['value'] .= $value;          break;        case 'close':          // end of node, return collected data          return $children;          break;      }    }    //return $children;  }  /**  * Appends some values to an array  *  * @access    public  * @param    array    [$target]  * @param    string    [$key]  * @param    string    [$value]  * @param    array    [$attributes]  * @param    array    [$inner] the children  * @return    void  * @since  */  function addNode($target, $key, $value = '', $attributes = '', $child = '') {    if (!isset($target[$key]['value']) && !isset($target[$key][0])) {      if ($child != '') {        $target[$key] = $child;      }      if ($attributes != '') {        foreach ($attributes as $k => $v) {          $target[$key][$k] = $v;        }      }      $target[$key]['value'] = $value;    } else {      if (!isset($target[$key][0])) {        // is string or other        $oldvalue = $target[$key];        $target[$key] = array();        $target[$key][0] = $oldvalue;        $index = 1;      } else {        // is array        $index = count($target[$key]);      }      if ($child != '') {        $target[$key][$index] = $child;      }      if ($attributes != '') {        foreach ($attributes as $k => $v) {          $target[$key][$index][$k] = $v;        }      }      $target[$key][$index]['value'] = $value;    }    return $target;  }  /**  * Free the resources  *  * @access    public  * @return    void  **/  function free() {    if (isset($this->parser) && is_resource($this->parser)) {      xml_parser_free($this->parser);      unset($this->parser);    }  }}

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基於數組實現的堆棧和隊列功能樣本詳解

基於PHP7錯誤處理與異常處理方法詳解

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.