首頁 > 後端開發 > php教程 > 一個將xml轉數組的php函數

一個將xml轉數組的php函數

WBOY
發布: 2016-07-25 08:59:08
原創
887 人瀏覽過
複製程式碼
  1. /**
  2. * xml2array() 會將給定的 XML 文字轉換為 XML 結構中的陣列。
  3. * 參數: $contents - XML 文字
  4. * $get_attributes - 1 或 0。如果為 1,則函數將取得屬性以及標籤值 - 這會導致返回值中出現不同的陣列結構。
  5. * $priority - 可以是「標籤」或「屬性」。這將改變生成的數組結構的方式。對於“tag”,標籤更加重要。
  6. * 傳回:解析後的陣列形式的 XML。使用 print_r() 查看產生的陣列結構。
  7. * 範例: $array = xml2array(file_get_contents('feed.xml'));
  8. * $array = xml2array(file_get_contents('feed.xml', 1) , '屬性'));
  9. */
  10. 函數xml2array($contents, $get_attributes=1, $priority = 'tag') {
  11. if(!$contents) return array();
  12. if(!function_exists('xml_parser_create')) {
  13. //列印"'xml_parser_create()' 函數不是找到了! >xml_parser_set_option($parser, XML_OPTION_TARGET_ENCODING, "UTF-8");
  14. > XML_PARSER_SET_OPTION_TARGET_ENCODING, "UTF-8");
  15. > XML_PARSER_SET_OPTION_TARGET_ENCODING, "UTF-8");
  16. > XML_PARSER_SET_OPTION($ PARSER,XML_OPTION_CASE_FOLDING,0);
  17. XML_PARSER,XML_OPTION_CASE_FOLDING,0); free($ parser);
  18. if(!$xml_values) return;//嗯...
  19. //初始化bbs.it-home.org
  20. $xml_array = array();
  21. $parents = array ();
  22. $opened_tags = array();
  23. $arr = array();
  24. $current = &$xml_array; //引用
  25. //遍歷標籤。
  26. $repeated_tag_index = array();//多個同名標籤將轉為數組
  27. foreach($xml_values as $data) {
  28. unset($attributes,$value);//刪除已有的值,不然會有麻煩
  29. //這個指令會將這些變數提取到foreach範圍
  30. // tag(string), type(string) , level(int), attribute(array).
  31. extract ($data);//我們可以單獨使用數組,但是這樣更酷。
  32. $result = array();
  33. $attributes_data = array();
  34. if(isset($value)) {

  35. if($priority == 'tag ') $result = $value;
  36. else $result ['值'] = $值; //如果我們處於「屬性」模式,則將值放入關聯數組
  37. }
  38. //也設定屬性。
  39. if(isset($attributes) and $get_attributes) {
  40. foreach($attributes as $attr => $val) {
  41. if($priority == 'tag') $attributes_data[$attr] = $val;
  42. else $result['attr'][$屬性] = $val; //設定名為'attr'的陣列中的所有屬性
  43. }
  44. }
  45. //查看標籤狀態並執行所需的操作。
  46. if($type == "open") {//標籤'' 的開頭
  47. $parent[$level-1] = &$current;
  48. if(!is_array($current ) 或(!in_array($tag, array_keys($current) )))) { //插入新標籤
  49. $current[$tag] = $result;
  50. if($attributes_data) $current[$tag . '_attr'] = $attributes_data;
  51. $repeated_tag_index[$tag.'_'.$level] = 1;
  52. $current = &$current[$tag];
  53. } else { //那裡是另一個具有相同標籤名稱的元素
  54. if(isset($current[$tag][0])) {//如果有第0個元素,則它已經是一個陣列
  55. $current[ $tag][ $repeated_tag_index[$tag.'_'.$level]] = $result;
  56. $repeated_tag_index[$tag.'_'.$level]++;
  57. } else {//這部分將使如果多個同名標籤一起出現,則取一個數組
  58. $current[$tag] = array($current[$tag],$result);//這會將現有項目和新項目組合在一起一個陣列
  59. $repeated_tag_index[$tag.'_'.$level] = 2;
  60. if(isset($current[$tag.'_attr'])) { //最後一個(第0個)標籤的屬性也必須移動

  61. $current[$tag]['0_attr'] = $current[$tag.'_attr'];
  62. unset($current[ $ tag.'_attr']);
  63. }
  64. }
  65. $last_item_index = $repeated_tag_index[$tag.'_'.$level]-1;
  66. $current = &$current[$ tag ][$last_item_index];
  67. }
  68. } elseif($type == "complete") { //以1 行結尾的標籤''
  69. //查看是否密鑰已被佔用。
  70. if(!isset($current[$tag])) { //新金鑰
  71. $current[$tag] = $result;
  72. $repeated_tag_index[$tag.'_ '.$level ] = 1;
  73. if($priority == 'tag' and $attributes_data) $current[$tag. '_attr'] = $attributes_data;
  74. } else { //如果採用,則將所有內容放入列表(陣列)
  75. if(isset($current[$tag][0]) and is_array($current [$tag])) {//如果它已經是陣列...
  76. // ...將新元素推入該數組。
  77. $current[$tag][$repeated_tag_index[$tag. '_'.$level]] = $結果;
  78. if($priority == 'tag' and $get_attributes and $attributes_data) {

  79. $current[$tag] [$repeated_tag_index[$tag.'_'.$level] 。 '_attr'] = $attributes_data;
  80. }
  81. $repeated_tag_index[$tag.'_'.$level]++;
  82. }else { //如果不是數組...
  83. $current[$tag] = array($current[$tag],$result); //...使用現有值和新值將其設為數組
  84. $repeated_tag_index[$tag.'_'.$level] = 1;
  85. if($priority == 'tag' and $get_attributes) {
  86. if(isset($current[$tag.' _attr'])) { //最後一個(第0個)標籤的屬性也必須移動
  87. unset($current[$tag.'_attr']);

  88. }
  89. if($attributes_data) {

  90. $current[$tag] [$repeated_tag_index[$tag.'_'.$level] 。 '_attr'] = $attributes_data;
  91. }
  92. }
  93. $repeated_tag_index[$tag.'_'.$level]++; // 0 和1 索引已被佔用
  94. }
  95. }
  96. } elseif($type == 'close') { // 標籤結尾'
  97. '
  98. $current = &$parent[$level-1];
  99. }
  100. }
  101. return($xml_array);

  102. }
  103. ?>> ;
複製程式碼

複製碼
    呼叫範例:
//php之XML轉運函數呼叫$arr = xml2array(file_get_contents("tools.xml🎜>$arr = xml2array(file_get_contents("tools.xml") ,1,'屬性');?>


來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板