91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

php中如何實現xml轉換成json

發布時間:2021-09-08 16:42:40 來源:億速云 閱讀:133 作者:小新 欄目:編程語言

這篇文章主要介紹了php中如何實現xml轉換成json,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

1、創建一個PHP示例文件。

2、找到需要轉換的xml文件。

3、通過“function xmlToArray($xml, $options = array()) {...}”方法將其轉換成json即可。

實例

function xmlToArray($xml, $options = array()) {
    $defaults = array(
        'namespaceSeparator' => ':',//you may want this to be something other than a colon
        'attributePrefix' => '@',   //to distinguish between attributes and nodes with the same name
        'alwaysArray' => array(),   //array of xml tag names which should always become arrays
        'autoArray' => true,        //only create arrays for tags which appear more than once
        'textContent' => '$',       //key used for the text content of elements
        'autoText' => true,         //skip textContent key if node has no attributes or child nodes
        'keySearch' => false,       //optional search and replace on tag and attribute names
        'keyReplace' => false       //replace values for above search values (as passed to str_replace())
    );
    $options = array_merge($defaults, $options);
    $namespaces = $xml->getDocNamespaces();
    $namespaces[''] = null; //add base (empty) namespace
    //get attributes from all namespaces
    $attributesArray = array();
    foreach ($namespaces as $prefix => $namespace) {
        foreach ($xml->attributes($namespace) as $attributeName => $attribute) {
            //replace characters in attribute name
            if ($options['keySearch']) $attributeName =
                   str_replace($options['keySearch'], $options['keyReplace'], $attributeName);
            $attributeKey = $options['attributePrefix']
                    . ($prefix ? $prefix . $options['namespaceSeparator'] : '')
                    . $attributeName;
            $attributesArray[$attributeKey] = (string)$attribute;
 
        }
 
    }
 
  
 
    //get child nodes from all namespaces
 
    $tagsArray = array();
 
    foreach ($namespaces as $prefix => $namespace) {
 
        foreach ($xml->children($namespace) as $childXml) {
 
            //recurse into child nodes
 
            $childArray = xmlToArray($childXml, $options);
 
            list($childTagName, $childProperties) = each($childArray);
 
  
 
            //replace characters in tag name
 
            if ($options['keySearch']) $childTagName =
 
                    str_replace($options['keySearch'], $options['keyReplace'], $childTagName);
 
            //add namespace prefix, if any
 
            if ($prefix) $childTagName = $prefix . $options['namespaceSeparator'] . $childTagName;
 
  
 
            if (!isset($tagsArray[$childTagName])) {
 
                //only entry with this key
 
                //test if tags of this type should always be arrays, no matter the element count
 
                $tagsArray[$childTagName] =
 
                        in_array($childTagName, $options['alwaysArray']) || !$options['autoArray']
 
                        ? array($childProperties) : $childProperties;
 
            } elseif (
 
                is_array($tagsArray[$childTagName]) && array_keys($tagsArray[$childTagName])
 
                === range(0, count($tagsArray[$childTagName]) - 1)
 
            ) {
 
                //key already exists and is integer indexed array
 
                $tagsArray[$childTagName][] = $childProperties;
 
            } else {
 
                //key exists so convert to integer indexed array with previous value in position 0
 
                $tagsArray[$childTagName] = array($tagsArray[$childTagName], $childProperties);
 
            }
 
        }
 
    }
 
  
 
    //get text content of node
 
    $textContentArray = array();
 
    $plainText = trim((string)$xml);
 
    if ($plainText !== '') $textContentArray[$options['textContent']] = $plainText;
 
  
 
    //stick it all together
 
    $propertiesArray = !$options['autoText'] || $attributesArray || $tagsArray || ($plainText === '')
 
            ? array_merge($attributesArray, $tagsArray, $textContentArray) : $plainText;
 
    //return node as array
    return array(
        $xml->getName() => $propertiesArray
    );
}

感謝你能夠認真閱讀完這篇文章,希望小編分享的“php中如何實現xml轉換成json”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

宿松县| 甘谷县| 融水| 偃师市| 江川县| 沙坪坝区| 石柱| 焦作市| 长垣县| 宜兰县| 盐源县| 沂水县| 荥经县| 额尔古纳市| 白河县| 资讯| 博湖县| 武乡县| 茌平县| 石棉县| 庄河市| 杭锦后旗| 无棣县| 红安县| 芦溪县| 萍乡市| 乐安县| 安龙县| 昌吉市| 温宿县| 北海市| 镇江市| 子长县| 衡南县| 桂平市| 法库县| 荣昌县| 定襄县| 乐业县| 鹤庆县| 元氏县|