在php中可以透過“json_decode”函數將字串轉換為對象,該函數的使用語法是“json_decode ( string $json [, bool $assoc = false [, int $depth...” 。
本文操作環境:Windows7系統、PHP7.1版,DELL G3電腦
將字串轉換為php對象
json_decode():解碼- 字串變成php中的物件
json_encode():編碼- 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的鍵值。
實例:
程式輸出:
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字串怎麼轉換對象的詳細內容。更多資訊請關注PHP中文網其他相關文章!