亚洲香蕉成人av网站在线观看_欧美精品成人91久久久久久久_久久久久久久久久久亚洲_热久久视久久精品18亚洲精品_国产精自产拍久久久久久_亚洲色图国产精品_91精品国产网站_中文字幕欧美日韩精品_国产精品久久久久久亚洲调教_国产精品久久一区_性夜试看影院91社区_97在线观看视频国产_68精品久久久久久欧美_欧美精品在线观看_国产精品一区二区久久精品_欧美老女人bb

首頁 > 網站 > 建站經驗 > 正文

PHP實現XML與數據格式進行轉換類實例

2024-04-25 20:40:15
字體:
來源:轉載
供稿:網友

本文實例講述了PHP實現XML與數據格式進行轉換類。分享給大家供大家參考。具體如下:

<?php

/**

* xml2array() will convert the given XML text to an array in the XML structure.

* Link: http://www.bin-co.com/php/scripts/xml2array/

* Arguments : $contents - The XML text

* $get_attributes - 1 or 0. If this is 1 the function will get the attributes as well as the tag values - this results in a different array structure in the return value.

* $priority - Can be 'tag' or 'attribute'. This will change the way the resulting array sturcture. For 'tag', the tags are given more importance.

* Return: The parsed XML in an array form. Use print_r() to see the resulting array structure.

* Examples: $array = xml2array(file_get_contents('feed.xml'));

* $array = xml2array(file_get_contents('feed.xml', 1, 'attribute'));

*/

function xml2array($contents, $get_attributes = 1, $priority = 'tag') {

if (!$contents) return array();

if (!function_exists('xml_parser_create')) {

// print "'xml_parser_create()' function not found!";

return array();

}

// Get the XML parser of PHP - PHP must have this module for the parser to work

$parser = xml_parser_create('');

xml_parser_set_option($parser, XML_OPTION_TARGET_ENCODING, "UTF-8"); // http://minutillo.com/steve/weblog/2004/6/17/php-xml-and-character-encodings-a-tale-of-sadness-rage-and-data-loss

xml_parser_set_option($parser, XML_OPTION_CASE_FOLDING, 0);

xml_parser_set_option($parser, XML_OPTION_SKIP_WHITE, 1);

xml_parse_into_struct($parser, trim($contents), $xml_values);

xml_parser_free($parser);

if (!$xml_values) return; //Hmm...

// Initializations

$xml_array = array();

$parents = array();

$opened_tags = array();

$arr = array();

$current = &$xml_array; //Refference

// Go through the tags.

$repeated_tag_index = array(); //Multiple tags with same name will be turned into an array

foreach($xml_values as $data) {

unset($attributes, $value); //Remove existing values, or there will be trouble

// This command will extract these variables into the foreach scope

// tag(string), type(string), level(int), attributes(array).

extract($data); //We could use the array by itself, but this cooler.

$result = array();

$attributes_data = array();

if (isset($value)) {

if ($priority == 'tag') $result = $value;

else $result['value'] = $value; //Put the value in a assoc array if we are in the 'Attribute' mode

}

// Set the attributes too.

if (isset($attributes) and $get_attributes) {

foreach($attributes as $attr => $val) {

if ($priority == 'tag') $attributes_data[$attr] = $val;

else $result['attr'][$attr] = $val; //Set all the attributes in a array called 'attr'

}

}

// See tag status and do the needed.

if ($type == "open") { // The starting of the tag '<tag>'

$parent[$level-1] = &$current;

if (!is_array($current) or (!in_array($tag, array_keys($current)))) { // Insert New tag

$current[$tag] = $result;

if ($attributes_data) $current[$tag . '_attr'] = $attributes_data;

$repeated_tag_index[$tag . '_' . $level] = 1;

$current = &$current[$tag];

} else { // There was another element with the same tag name

if (isset($current[$tag][0])) { // If there is a 0th element it is already an array

$current[$tag][$repeated_tag_index[$tag . '_' . $level]] = $result;

$repeated_tag_index[$tag . '_' . $level]++;

} else { // This section will make the value an array if multiple tags with the same name appear together

$current[$tag] = array($current[$tag], $result); //This will combine the existing item and the new item together to make an array

$repeated_tag_index[$tag . '_' . $level] = 2;

if (isset($current[$tag . '_attr'])) { // The attribute of the last(0th) tag must be moved as well

$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") { // Tags that ends in 1 line '<tag />'

// See if the key is already taken.

if (!isset($current[$tag])) { // New Key

$current[$tag] = $result;

$repeated_tag_index[$tag . '_' . $level] = 1;

if ($priority == 'tag' and $attributes_data) $current[$tag . '_attr'] = $attributes_data;

} else { // If taken, put all things inside a list(array)

if (isset($current[$tag][0]) and is_array($current[$tag])) { // If it is already an array...

// ...push the new element into that array.

$current[$tag][$repeated_tag_index[$tag . '_' . $level]] = $result;

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 { // If it is not an array...

$current[$tag] = array($current[$tag], $result); //...Make it an array using using the existing value and the new value

$repeated_tag_index[$tag . '_' . $level] = 1;

if ($priority == 'tag' and $get_attributes) {

if (isset($current[$tag . '_attr'])) { // The attribute of the last(0th) tag must be moved as well

$current[$tag]['0_attr'] = $current[$tag . '_attr'];

unset($current[$tag . '_attr']);

}

if ($attributes_data) {

$current[$tag][$repeated_tag_index[$tag . '_' . $level] . '_attr'] = $attributes_data;

}

}

$repeated_tag_index[$tag . '_' . $level]++; //0 and 1 index is already taken

}

}

} elseif ($type == 'close') { // End of tag '</tag>'

$current = &$parent[$level-1];

}

}

return($xml_array);

}

// Array to XML

class array2xml {

public $output = "<?xml version="1.0" encoding="utf-8"?>n";

public $sub_item = array();

public function __construct($array) {

$sub_item = array();

$this->output .= $this->xmlmake($array);

}

public function xmlmake($array, $fk = '') {

$xml = '';

global $sub_item;

foreach ($array as $key => $value) {

if (is_array($value)) {

if (is_numeric($key)) {

$this->sub_item=array_merge($this->sub_item,array($fk));

$xml .= "<{$fk}>" . $this->xmlmake($value, $key) . "</{$fk}>";

} else {

$xml .= "<{$key}>" . $this->xmlmake($value, $key) . "</{$key}>";

}

} else {

$xml .= "<{$key}>{$value}</{$key}>n";

}

}

return $xml;

}

public function output(){

foreach($this->sub_item as $t){

$this->output = str_replace("<{$t}><{$t}>","<{$t}>",$this->output);

$this->output = str_replace("</{$t}></{$t}>","</{$t}>",$this->output);

}

return $this->output;

}

}

希望本文所述對大家的php程序設計有所幫助。

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
亚洲香蕉成人av网站在线观看_欧美精品成人91久久久久久久_久久久久久久久久久亚洲_热久久视久久精品18亚洲精品_国产精自产拍久久久久久_亚洲色图国产精品_91精品国产网站_中文字幕欧美日韩精品_国产精品久久久久久亚洲调教_国产精品久久一区_性夜试看影院91社区_97在线观看视频国产_68精品久久久久久欧美_欧美精品在线观看_国产精品一区二区久久精品_欧美老女人bb
国产精品久久久久免费a∨大胸| 国产精品影院在线观看| 久久99久久99精品免观看粉嫩| 国产精品久久精品| 欧美一级片一区| 国产成人精品免高潮费视频| 欧美日韩一区二区免费在线观看| 精品国产乱码久久久久久婷婷| 日韩中文字幕视频| 日韩欧美亚洲国产一区| 亚洲欧美国产精品va在线观看| 欧美国产中文字幕| 欧美在线一级va免费观看| 国产精品视频免费在线观看| 久青草国产97香蕉在线视频| 中文字幕国产日韩| 九九精品视频在线| 九九精品在线观看| 亚洲第一福利视频| 欧美激情在线一区| 亚洲欧美在线一区| 久久91精品国产91久久久| 69视频在线播放| 亚洲欧美成人在线| 中文字幕日韩欧美在线| 国产情人节一区| 国产精品一区二区久久久| 欧美成人精品在线| 国产精品视频导航| 国产视频久久久久久久| 中文字幕精品在线| 日本久久久a级免费| 91久久在线视频| 26uuu亚洲伊人春色| 欧美成人免费一级人片100| 国产精品久久中文| 4438全国亚洲精品在线观看视频| 亚洲视频在线免费观看| 91在线直播亚洲| 国产精品久久久久91| 91免费电影网站| 亚洲欧美日本精品| 久久久噜久噜久久综合| 精品国产乱码久久久久久虫虫漫画| 97av在线视频| 久久久久久久久久婷婷| 欧美日韩国产999| 国产在线观看91精品一区| 亚洲欧美中文日韩在线| 欧美色视频日本高清在线观看| 日韩中文字幕网址| 久久久亚洲精品视频| 国产精品第一视频| 亚洲毛片在线看| 成人欧美在线视频| 18久久久久久| 久久激情视频免费观看| 91av在线国产| 91高清免费在线观看| 韩国日本不卡在线| 日本在线观看天堂男亚洲| 国产日韩欧美在线视频观看| 97久久精品国产| 国产日本欧美一区二区三区| 亚洲国产精品国自产拍av秋霞| 在线精品视频视频中文字幕| 亚洲欧美www| 成人激情春色网| 国产91在线播放精品91| 欧美性猛交xxxx乱大交3| 91在线视频成人| 成人动漫网站在线观看| 久久伊人91精品综合网站| 色吧影院999| 日韩精品在线视频观看| 日本不卡高字幕在线2019| 在线国产精品播放| 亚洲精品女av网站| 亚洲美腿欧美激情另类| 国产精品va在线播放我和闺蜜| 欧美日本精品在线| 国产日韩精品综合网站| 久久av.com| 久久久国产一区二区三区| 清纯唯美亚洲综合| 亚洲另类欧美自拍| 欧美日韩国产区| 色阁综合伊人av| 日韩一级黄色av| 欧美日韩免费在线| 国产剧情日韩欧美| 亚洲自拍小视频| 精品夜色国产国偷在线| 欧美在线xxx| 日韩在线观看电影| 欧美日韩一区二区免费在线观看| 久久精品国产欧美亚洲人人爽| 久久国产精品网站| 一区二区三区四区精品| 欧美另类69精品久久久久9999| 成人激情视频在线观看| 少妇高潮久久久久久潘金莲| 亚洲精品美女在线观看| 国产精品美女主播| 俺去了亚洲欧美日韩| 韩国三级电影久久久久久| 久久亚洲综合国产精品99麻豆精品福利| 欧美高清第一页| 久久久爽爽爽美女图片| 91在线精品播放| 久久成人人人人精品欧| 影音先锋欧美精品| 欧美交受高潮1| 色一区av在线| 色综合91久久精品中文字幕| 久久久免费高清电视剧观看| 日韩中文字幕亚洲| 91网在线免费观看| 亚洲人午夜精品| 国产精品伦子伦免费视频| 欧美一区在线直播| 日韩av黄色在线观看| 国产高清在线不卡| 欧美精品在线观看91| 久久久久久久影视| 97视频免费观看| 国产午夜精品一区理论片飘花| 成人性生交大片免费看视频直播| 日本在线精品视频| 欧美另类第一页| 国产精品综合久久久| 国产久一一精品| 欧美乱大交做爰xxxⅹ性3| 欧美激情精品久久久久久大尺度| 亚洲精品福利视频| 精品国产91久久久久久老师| 91系列在线播放| 欧美精品电影在线| 日韩精品福利在线| 自拍亚洲一区欧美另类| 久久中国妇女中文字幕| 欧美丰满少妇xxxxx做受| 欧美中文在线观看| 国产99在线|中文| 国产成人综合一区二区三区| 欧美在线观看一区二区三区| 欧美激情亚洲自拍| 国产91成人video| 久久这里只有精品视频首页| 久久777国产线看观看精品| 国产精品成人久久久久| 91精品国产综合久久香蕉的用户体验| 亚洲国产又黄又爽女人高潮的| 欧美午夜精品在线| 中文在线不卡视频| 正在播放国产一区| 亚洲a级在线播放观看| 亚洲国产精品成人一区二区| 热草久综合在线| 91高清视频免费观看| 国产精品久久二区| 一区二区三区四区视频| 亚洲第一天堂无码专区| 亚洲第一男人av|