您好,登錄后才能下訂單哦!
這篇文章將為大家詳細(xì)講解有關(guān)php怎么將json字符串轉(zhuǎn)為數(shù)組,小編覺(jué)得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。
php將json字符串轉(zhuǎn)為數(shù)組的方法:可以利用json_decode函數(shù)來(lái)實(shí)現(xiàn),如【json_decode($json, true);】。json_decode函數(shù)可以接受一個(gè)json格式的字符串并把它轉(zhuǎn)換為php變量。
函數(shù)介紹:
json_decode接受一個(gè)JSON格式的字符串并且把它轉(zhuǎn)換為PHP變量 ,當(dāng)該參數(shù)$assoc為T(mén)RUE時(shí),將返回array,否則返回object。
語(yǔ)法格式:
json_decode(string $json[,bool $assoc = false[,int $depth = 512[,int $options = 0]]])
代碼實(shí)現(xiàn):
<?php $json = '{"a":"php","b":"mysql","c":3}'; $json_Class=json_decode($json); $json_Array=json_decode($json, true); print_r($json_Class); print_r($json_Array); ?>
輸出結(jié)果:
stdClass Object ( [a] => php [b] => mysql [c] => 3 ) Array ( [a] => php [b] => mysql [c] => 3 )
關(guān)于php怎么將json字符串轉(zhuǎn)為數(shù)組就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到。
免責(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)容。