-
-
- /**
- * xml2array() 會將給定的 XML 文字轉換為 XML 結構中的陣列。
- * 參數: $contents - XML 文字
- * $get_attributes - 1 或 0。如果為 1,則函數將取得屬性以及標籤值 - 這會導致返回值中出現不同的陣列結構。
- * $priority - 可以是「標籤」或「屬性」。這將改變生成的數組結構的方式。對於“tag”,標籤更加重要。
- * 傳回:解析後的陣列形式的 XML。使用 print_r() 查看產生的陣列結構。
- * 範例: $array = xml2array(file_get_contents('feed.xml'));
- * $array = xml2array(file_get_contents('feed.xml', 1) , '屬性'));
- */
- 函數xml2array($contents, $get_attributes=1, $priority = 'tag') {
- if(!$contents) return array();
- if(!function_exists('xml_parser_create')) {
- //列印"'xml_parser_create()' 函數不是找到了! >xml_parser_set_option($parser, XML_OPTION_TARGET_ENCODING, "UTF-8");
- > XML_PARSER_SET_OPTION_TARGET_ENCODING, "UTF-8");
- > XML_PARSER_SET_OPTION_TARGET_ENCODING, "UTF-8");
- > XML_PARSER_SET_OPTION($ PARSER,XML_OPTION_CASE_FOLDING,0);
- XML_PARSER,XML_OPTION_CASE_FOLDING,0); free($ parser);
- if(!$xml_values) return;//嗯...
- //初始化bbs.it-home.org
- $xml_array = array();
- $parents = array ();
- $opened_tags = array();
- $arr = array();
- $current = &$xml_array; //引用
- //遍歷標籤。
- $repeated_tag_index = array();//多個同名標籤將轉為數組
- foreach($xml_values as $data) {
- unset($attributes,$value);//刪除已有的值,不然會有麻煩
- //這個指令會將這些變數提取到foreach範圍
- // tag(string), type(string) , level(int), attribute(array).
- extract ($data);//我們可以單獨使用數組,但是這樣更酷。
- $result = array();
- $attributes_data = array();
if(isset($value)) {
- if($priority == 'tag ') $result = $value;
- else $result ['值'] = $值; //如果我們處於「屬性」模式,則將值放入關聯數組
- }
- //也設定屬性。
- if(isset($attributes) and $get_attributes) {
- foreach($attributes as $attr => $val) {
- if($priority == 'tag') $attributes_data[$attr] = $val;
- else $result['attr'][$屬性] = $val; //設定名為'attr'的陣列中的所有屬性
- }
- }
- //查看標籤狀態並執行所需的操作。
- if($type == "open") {//標籤'' 的開頭
- $parent[$level-1] = &$current;
- if(!is_array($current ) 或(!in_array($tag, array_keys($current) )))) { //插入新標籤
- $current[$tag] = $result;
- if($attributes_data) $current[$tag . '_attr'] = $attributes_data;
- $repeated_tag_index[$tag.'_'.$level] = 1;
- $current = &$current[$tag];
- } else { //那裡是另一個具有相同標籤名稱的元素
- if(isset($current[$tag][0])) {//如果有第0個元素,則它已經是一個陣列
- $current[ $tag][ $repeated_tag_index[$tag.'_'.$level]] = $result;
- $repeated_tag_index[$tag.'_'.$level]++;
- } else {//這部分將使如果多個同名標籤一起出現,則取一個數組
- $current[$tag] = array($current[$tag],$result);//這會將現有項目和新項目組合在一起一個陣列
- $repeated_tag_index[$tag.'_'.$level] = 2;
if(isset($current[$tag.'_attr'])) { //最後一個(第0個)標籤的屬性也必須移動
- $current[$tag]['0_attr'] = $current[$tag.'_attr'];
- unset($current[ $ tag.'_attr']);
- }
- }
- $last_item_index = $repeated_tag_index[$tag.'_'.$level]-1;
- $current = &$current[$ tag ][$last_item_index];
- }
- } elseif($type == "complete") { //以1 行結尾的標籤''
- //查看是否密鑰已被佔用。
- if(!isset($current[$tag])) { //新金鑰
- $current[$tag] = $result;
- $repeated_tag_index[$tag.'_ '.$level ] = 1;
- if($priority == 'tag' and $attributes_data) $current[$tag. '_attr'] = $attributes_data;
- } else { //如果採用,則將所有內容放入列表(陣列)
- if(isset($current[$tag][0]) and is_array($current [$tag])) {//如果它已經是陣列...
- // ...將新元素推入該數組。
- $current[$tag][$repeated_tag_index[$tag. '_'.$level]] = $結果;
if($priority == 'tag' and $get_attributes and $attributes_data) {
- $current[$tag] [$repeated_tag_index[$tag.'_'.$level] 。 '_attr'] = $attributes_data;
- }
- $repeated_tag_index[$tag.'_'.$level]++;
- }else { //如果不是數組...
- $current[$tag] = array($current[$tag],$result); //...使用現有值和新值將其設為數組
- $repeated_tag_index[$tag.'_'.$level] = 1;
- if($priority == 'tag' and $get_attributes) {
- if(isset($current[$tag.' _attr'])) { //最後一個(第0個)標籤的屬性也必須移動
unset($current[$tag.'_attr']);
- }
if($attributes_data) {
- $current[$tag] [$repeated_tag_index[$tag.'_'.$level] 。 '_attr'] = $attributes_data;
- }
- }
- $repeated_tag_index[$tag.'_'.$level]++; // 0 和1 索引已被佔用
- }
- }
- } elseif($type == 'close') { // 標籤結尾'
'
- $current = &$parent[$level-1];
- }
- }
return($xml_array);
- }
- ?>> ;
-
複製程式碼
複製碼 呼叫範例:
-
-
-
-
-
//php之XML轉運函數呼叫 $arr = xml2array(file_get_contents("tools.xml🎜>$arr = xml2array(file_get_contents("tools.xml") ,1,'屬性');?>
|
複製程式碼
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
-
2024-10-22 09:46:29
-
2024-10-13 13:53:41
-
2024-10-12 12:15:51
-
2024-10-11 22:47:31
-
2024-10-11 19:36:51
-
2024-10-11 15:50:41
-
2024-10-11 15:07:41
-
2024-10-11 14:21:21
-
2024-10-11 12:59:11
-
2024-10-11 12:17:31