php將json字串轉為陣列的方法:可以利用json_decode函數來實現,如【json_decode($json, true);】。 json_decode函數可以接受一個json格式的字串並把它轉換為php變數。
函數介紹:
(推薦教學:php影片教學)
json_decode接受一個JSON格式的字串並且把它轉換為PHP變數 ,當該參數$assoc為TRUE時,將傳回array,否則傳回object。
語法格式:
json_decode(string $json[,bool $assoc = false[,int $depth = 512[,int $options = 0]]])
程式碼實作:
<?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); ?>
輸出結果:
stdClass Object ( [a] => php [b] => mysql [c] => 3 ) Array ( [a] => php [b] => mysql [c] => 3 )
相關推薦:php訓練
以上是php如何將json字串轉為數組的詳細內容。更多資訊請關注PHP中文網其他相關文章!