ThinkPHP XML格式转换成数组

jerry thinkphp 2015年11月18日 收藏
XML格式转换成数组 用递归操作很简单,大家可以下载附件测试
  1. // Xml 转 数组, 包括根键,忽略空元素和属性,尚有重大错误
  2. public function xml_to_array( $xml )
  3.     {
  4.         $reg = "/<(\\w+)[^>]*?>([\\x00-\\xFF]*?)<\\/\\1>/";
  5.         if(preg_match_all($reg, $xml, $matches))
  6.         {
  7.             $count = count($matches[0]);
  8.             $arr = array();
  9.             for($i = 0; $i < $count; $i++)
  10.             {
  11.                 $key = $matches[1][$i];
  12.                 $val = $this->xml_to_array( $matches[2][$i] );  // 递归
  13.                 if(array_key_exists($key, $arr))
  14.                 {
  15.                     if(is_array($arr[$key]))
  16.                     {
  17.                         if(!array_key_exists(0,$arr[$key])) 
  18.                         {
  19.                             $arr[$key] = array($arr[$key]);
  20.                         }
  21.                     }else{
  22.                         $arr[$key] = array($arr[$key]);
  23.                     }
  24.                     $arr[$key][] = $val;
  25.                 }else{
  26.                     $arr[$key] = $val;
  27.                 }
  28.             }
  29.             return $arr;
  30.         }else{
  31.             return $xml;
  32.         }
  33.     }


  34. // Xml 转 数组, 不包括根键
  35. public function xmltoarray( $xml )
  36.     {

  37.         $arr = $this->xml_to_array($xml);
  38.         $key = array_keys($arr);
  39.         return $arr[$key[0]];
  40.     }
第二种方法,预防递归溢出
  1. class XML
  2. {

  3. public $parser = NULL;
  4. public $document = NULL;
  5. public $parent = NULL;
  6. public $stack = NULL;
  7. public $last_opened_tag = NULL;

  8. public function XML( )
  9.     {
  10.         $this->parser = xml_parser_create( );
  11.         xml_parser_set_option( $this->parser, XML_OPTION_CASE_FOLDING, false );
  12.         xml_set_object( $this->parser, $this );
  13.         xml_set_element_handler( $this->parser, "open", "close" );
  14.         xml_set_character_data_handler( $this->parser, "data" );
  15.     }

  16. public function destruct( )
  17.     {
  18.         xml_parser_free( $this->parser );
  19.     }

  20. public function &parse( &$data )
  21.     {
  22.         $this->document = array( );
  23.         $this->stack = array( );
  24.         $this->parent =& $this->document;
  25.         $parsedata = xml_parse( $this->parser, $data, true ) ? $this->document : NULL;
  26.         return $parsedata;
  27.     }

  28. public function open( &$parser, $tag, $attributes )
  29.     {
  30.         $this->data = "";
  31.         $this->last_opened_tag = $tag;
  32.         if ( is_array( $this->parent ) && array_key_exists( $tag, $this->parent ) )
  33.         {
  34.             if ( is_array( $this->parent[$tag] ) && array_key_exists( 0, $this->parent[$tag] ) )
  35.             {
  36.                 $key = count_numeric_items( $this->parent[$tag] );
  37.             }
  38.             else
  39.             {
  40.                 if ( array_key_exists( "{$tag} attr", $this->parent ) )
  41.                 {
  42.                     $arr = array(
  43.                         "0 attr" => $this->parent["{$tag} attr"],
  44.                         $this->parent[$tag]
  45.                     );
  46.                     unset( $this->parent["{$tag} attr"] );
  47.                 }
  48.                 else
  49.                 {
  50.                     $arr = array(
  51.                         $this->parent[$tag]
  52.                     );
  53.                 }
  54.                 $this->parent[$tag] =& $arr;
  55.                 $key = 1;
  56.             }
  57.             $this->parent =& $this->parent[$tag];
  58.         }
  59.         else
  60.         {
  61.             $key = $tag;
  62.         }
  63.         if ( $attributes )
  64.         {
  65.             $this->parent["{$key} attr"] = $attributes;
  66.         }
  67.         $this->parent =& $this->parent[$key];
  68.         $this->stack[] =& $this->parent;
  69.     }

  70. public function data( &$parser, $data )
  71.     {
  72.         if ( $this->last_opened_tag != NULL )
  73.         {
  74.             $this->data .= $data;
  75.         }
  76.     }

  77. public function close( &$parser, $tag )
  78.     {
  79.         if ( $this->last_opened_tag == $tag )
  80.         {
  81.             $this->parent = $this->data;
  82.             $this->last_opened_tag = NULL;
  83.         }
  84.         array_pop( $this->stack );
  85.         if ( $this->stack )
  86.         {
  87.             $this->parent =& $this->stack[count( $this->stack ) - 1];
  88.         }
  89.     }

  90. }

  91. function &XML_unserialize( &$xml )
  92. {
  93.     $xml_parser = new XML( );
  94.     $data =& $xml_parser->parse( $xml );
  95.     $xml_parser->destruct( );
  96.     return $data;
  97. }

  98. function &XML_serialize( &$data, $level = 0, $prior_key = NULL )
  99. {
  100.     if ( $level == 0 )
  101.     {
  102.         ob_start( );
  103.         echo "<?xml version=\"1.0\" ?>";
  104.         echo "\n";
  105.     }
  106.     while ( list( $key, $value ) = each( $data ) )
  107.     {
  108.         if ( !strpos( $key, " attr" ) )
  109.         {
  110.             if ( is_array( $value ) && array_key_exists( 0, $value ) )
  111.             {
  112.                 xml_serialize( $value, $level, $key );
  113.             }
  114.             else
  115.             {
  116.                 $tag = $prior_key ? $prior_key : $key;
  117.                 echo str_repeat( "\t", $level );
  118.                 echo "<";
  119.                 echo $tag;
  120.                 if ( array_key_exists( "{$key} attr", $data ) )
  121.                 {
  122.                     while ( list( $attr_name, $attr_value ) = each( $data["{$key} attr"] ) )
  123.                     {
  124.                         echo " ";
  125.                         echo $attr_name;
  126.                         echo "=\"";
  127.                         echo htmlspecialchars( $attr_value );
  128.                         echo "\"";
  129.                     }
  130.                     reset( $data["{$key} attr"] );
  131.                 }
  132.                 if ( is_null( $value ) )
  133.                 {
  134.                     echo " />\n";
  135.                 }
  136.                 else if ( !is_array( $value ) )
  137.                 {
  138.                     echo ">";
  139.                     echo htmlspecialchars( $value );
  140.                     echo "</{$tag}>\n";
  141.                 }
  142.                 else
  143.                 {
  144.                     echo ">\n";
  145.                     echo xml_serialize( $value, $level + 1 );
  146.                     echo str_repeat( "\t", $level );
  147.                     echo "</{$tag}>\n";
  148.                 }
  149.             }
  150.         }
  151.     }
  152.     reset( $data );
  153.     if ( $level == 0 )
  154.     {
  155.         $str =& ob_get_contents( );
  156.         ob_end_clean( );
  157.         return $str;
  158.     }
  159. }

  160. function count_numeric_items( &$array )
  161. {
  162.     return is_array( $array ) ? count( array_filter( array_keys( $array ), "is_numeric" ) ) : 0;
  163. }

附件IndexModel.class.zip ( 705 B 下载:75 次 )