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

首頁 > 編程 > PHP > 正文

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

2020-03-22 20:08:05
字體:
來源:轉載
供稿:網友
本文實例講述了PHP實現XML與數據格式進行轉換類。分享給大家供大家參考。具體如下: * 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 html' target='_blank'>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 XMLclass array2xml { public $output = " xml version=/"1.0/" encoding=/"utf-8/" 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} 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程序設計有所幫助。PHP教程

鄭重聲明:本文版權歸原作者所有,轉載文章僅為傳播更多信息之目的,如作者信息標記有誤,請第一時間聯系我們修改或刪除,多謝。

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
亚洲香蕉成人av网站在线观看_欧美精品成人91久久久久久久_久久久久久久久久久亚洲_热久久视久久精品18亚洲精品_国产精自产拍久久久久久_亚洲色图国产精品_91精品国产网站_中文字幕欧美日韩精品_国产精品久久久久久亚洲调教_国产精品久久一区_性夜试看影院91社区_97在线观看视频国产_68精品久久久久久欧美_欧美精品在线观看_国产精品一区二区久久精品_欧美老女人bb
成人乱人伦精品视频在线观看| 成人信息集中地欧美| 亚洲国产高清高潮精品美女| 97av在线影院| 国产日韩在线免费| 91中文精品字幕在线视频| 2018中文字幕一区二区三区| 欧美日韩性视频| 日韩成人在线免费观看| 亚洲国产精品中文| 国内自拍欧美激情| 曰本色欧美视频在线| 4438全国成人免费| 日韩成人在线视频| 久久久91精品国产| 日韩网站免费观看高清| 日本在线观看天堂男亚洲| 91精品国产网站| 久久五月天综合| 欧美制服第一页| 欧美体内谢she精2性欧美| 91久久中文字幕| 国产日韩欧美在线播放| 日韩av网址在线观看| 亚洲激情免费观看| 性欧美亚洲xxxx乳在线观看| 亚洲第一视频网| 亚洲第一免费播放区| 亚洲精品国产电影| 亚洲欧美精品中文字幕在线| 亚洲欧美国产日韩天堂区| 91美女高潮出水| 91久久精品国产| 国产美女精品视频| 日本成人在线视频网址| 国语自产精品视频在免费| 亚洲天堂免费观看| 国产丝袜一区二区三区| 91久久在线视频| 国产欧美日韩专区发布| 成人伊人精品色xxxx视频| 国产精品国产三级国产aⅴ浪潮| 91精品国产色综合久久不卡98| 久久手机精品视频| 国产区精品在线观看| 国产精品成人一区二区| 亚洲综合小说区| 国产精品激情av在线播放| 久久黄色av网站| 亚洲最大成人免费视频| 伦理中文字幕亚洲| 国产亚洲欧洲高清一区| 欧美大片va欧美在线播放| 中文字幕亚洲一区二区三区| 亚洲在线免费看| 亚洲国产欧美一区二区三区久久| 亚洲免费精彩视频| 日韩小视频在线| 国模精品视频一区二区三区| 自拍偷拍亚洲一区| 国产成人午夜视频网址| 欧美精品在线免费| 日韩中文在线不卡| 成人黄色免费网站在线观看| 色综合天天综合网国产成人网| 国产亚洲视频在线观看| 国产原创欧美精品| 成人亚洲综合色就1024| 欧美激情综合亚洲一二区| 欧美极品xxxx| 久久久久久久国产精品视频| 中文字幕在线观看日韩| 亚洲精品国产精品国自产在线| 伊是香蕉大人久久| 日韩在线欧美在线国产在线| 久久香蕉国产线看观看av| www.国产精品一二区| 欧美视频专区一二在线观看| 久久久久国产精品www| 91成品人片a无限观看| 高清欧美性猛交xxxx| 精品国产一区二区三区久久狼黑人| 精品久久久久久久久久国产| 日本精品视频网站| 欧美激情在线狂野欧美精品| 亚洲第一福利网站| 成人午夜激情网| 亚洲影视中文字幕| 亚洲国产精品久久91精品| 日韩欧美在线视频日韩欧美在线视频| 日本精品一区二区三区在线播放视频| 国产一区深夜福利| 日韩美女在线观看一区| 久久久av免费| 亚洲精品97久久| 日韩在线视频一区| 久久精品电影一区二区| 色妞一区二区三区| 亚洲精品免费网站| 国产精品电影网| 亚洲成人黄色在线| 久久成年人免费电影| 欧美精品免费在线观看| 欧美日韩一二三四五区| 久久影院中文字幕| 亚洲国产一区二区三区在线观看| 久久成人综合视频| 欧美贵妇videos办公室| 国产精品亚洲激情| 久久久亚洲成人| 亚洲高清一区二| 日韩中文字幕在线视频| 韩国美女主播一区| 亚洲有声小说3d| 国外日韩电影在线观看| 国产一区二区三区在线视频| 亚洲男人天堂2024| 亚洲最新在线视频| 中文字幕亚洲色图| 一区二区三区视频免费| 91视频免费在线| 亚洲va久久久噜噜噜| 欧美黄网免费在线观看| 国产欧美日韩亚洲精品| 欧美孕妇毛茸茸xxxx| 欧美成人亚洲成人日韩成人| 日韩中文字幕国产精品| 91国内精品久久| 91亚洲va在线va天堂va国| 国产精品免费电影| 91免费国产视频| 日韩免费观看高清| 色系列之999| 国产91精品久久久久| 91精品国产一区| 久久精视频免费在线久久完整在线看| 亚洲毛片在线看| 亚洲综合色av| 久久久久久久久爱| 欧美成人第一页| 国产亚洲精品美女久久久| 亚洲欧洲在线视频| 九九精品视频在线| 国产精品久久久久久搜索| 日韩电影中文字幕在线观看| 91久久国产精品| 日韩国产高清视频在线| 亚洲国产精品va在线观看黑人| 欧美激情视频免费观看| 欧美中文在线字幕| 亚洲无亚洲人成网站77777| 国产精品久久久久久网站| 欧美成人精品一区二区三区| 中文字幕日韩av综合精品| 亚洲国产小视频| 午夜精品一区二区三区视频免费看| 亚洲精品999| 亚洲性日韩精品一区二区| 久久香蕉频线观| 国外色69视频在线观看| 日韩欧美亚洲一二三区| 91亚洲国产成人久久精品网站| 久久久这里只有精品视频| 国产精品久久二区|