真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

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

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

成都創(chuàng)新互聯(lián)專業(yè)為企業(yè)提供煙臺網(wǎng)站建設(shè)、煙臺做網(wǎng)站、煙臺網(wǎng)站設(shè)計、煙臺網(wǎng)站制作等企業(yè)網(wǎng)站建設(shè)、網(wǎng)頁設(shè)計與制作、煙臺企業(yè)網(wǎng)站模板建站服務(wù),十載煙臺做網(wǎng)站經(jīng)驗,不只是建網(wǎng)站,更提供有價值的思路和整體網(wǎng)絡(luò)服務(wù)。

一、xml轉(zhuǎn)成數(shù)組,xml中包含標簽

/**
 * 將xml轉(zhuǎn)換為數(shù)組
 * @param string $xml:xml文件或字符串
 * @return array
 */
function xmlToArray($xml){
//考慮到xml文檔中可能會包含標簽,第三個參數(shù)設(shè)置為LIBXML_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 當該參數(shù)為true時,將返回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ù)組的方法,具體使用情況還需要大家自己動手實驗使用過才能領(lǐng)會。如果想了解更多相關(guān)內(nèi)容,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!


網(wǎng)站欄目:如何將xml和jsonp轉(zhuǎn)換為PHP數(shù)組
網(wǎng)站URL:http://weahome.cn/article/jpeioe.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部