json如何轉php?
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
echo $json_Array['a'];
php
PHP教學》
以上是json如何轉php的詳細內容。更多資訊請關注PHP中文網其他相關文章!