php中怎麼把json轉成物件陣列 ?
在php中可以使用json_decode函數將json轉成物件陣列。
json_decode是php5.2.0之後新增的一個PHP內建函數,其作用是對JSON格式的字串進行編碼.
那麼這個函數該如何使用呢?
json_decode的語法規則:
json_decode ( string $json [, bool $assoc = false [, int $depth = 512 [, int $options = 0 ]]] )
json_decode接受一個JSON格式的字串並且把它轉換為PHP變數 ,當該引數$assoc為TRUE時,將返回array,否則返回object。
JSON 格式的字串
$json = '{"a":"php","b":"mysql","c":3}';
其中a為鍵,php為a的鍵值。
範例:
<?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 )
在上面程式碼的前提下
存取物件型別$json_Class的a的值
echo $json_Class->{'a'};
程式輸出:php
存取陣列型別$json_Array的a的值
echo $json_Array['a'];
程式輸出:php
推薦:《php教學》
以上就是php中怎麼把json轉成物件陣列的詳細內容,更多請關注TW511.COM其它相關文章!