溫馨提示×

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

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

如何將xml和jsonp轉(zhuǎn)換為PHP數(shù)組

發(fā)布時(shí)間:2020-06-18 11:25:48 來源:億速云 閱讀:134 作者:Leah 欄目:編程語(yǔ)言

如何將xml和jsonp轉(zhuǎn)換為PHP數(shù)組?相信很多新手小白還沒學(xué)會(huì)這個(gè)技能,通過這篇文章的總結(jié),希望你能學(xué)會(huì)這個(gè)技能。以下資料是實(shí)現(xiàn)的步驟。

一、xml轉(zhuǎn)成數(shù)組,xml中包含<![CDATA[]]>標(biāo)簽

/**
 * 將xml轉(zhuǎn)換為數(shù)組
 * @param string $xml:xml文件或字符串
 * @return array
 */
function xmlToArray($xml){
//考慮到xml文檔中可能會(huì)包含<![CDATA[]]>標(biāo)簽,第三個(gè)參數(shù)設(shè)置為L(zhǎng)IBXML_NOCDATA
if (file_exists($xml)) {
libxml_disable_entity_loader(false);
$xml_string = simplexml_load_file($xml,'SimpleXMLElement', LIBXML_NOCDATA);
}else{
libxml_disable_entity_loader(true);
$xml_string = simplexml_load_string($xml,'SimpleXMLElement', LIBXML_NOCDATA);
}
$result = json_decode(json_encode($xml_string),true);
return $result;
}

二、jsonp轉(zhuǎn)換成數(shù)組

/**
 * 把jsonp轉(zhuǎn)為php數(shù)組
 * @param string $jsonp jsonp字符串
 * @param boolean $assoc 當(dāng)該參數(shù)為true時(shí),將返回array而非object
 * @return array
 */
function jsonp_decode($jsonp, $assoc = false)
{
    $jsonp = trim($jsonp);
    if(isset($jsonp[0]) && $jsonp[0] !== '[' && $jsonp[0] !== '{') {
        $begin = strpos($jsonp, '(');
        if(false !== $begin)
        {
            $end = strrpos($jsonp, ')');
            if(false !== $end)
            {
                $jsonp = substr($jsonp, $begin + 1, $end - $begin - 1);
            }
        }
    }
    return json_decode($jsonp, $assoc);
}

上文描述的就是將xml和jsonp轉(zhuǎn)換為PHP數(shù)組的方法,具體使用情況還需要大家自己動(dòng)手實(shí)驗(yàn)使用過才能領(lǐng)會(huì)。如果想了解更多相關(guān)內(nèi)容,歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI