溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

php中如何將json轉(zhuǎn)換成對象數(shù)組?

發(fā)布時間:2020-05-19 11:59:39 來源:億速云 閱讀:269 作者:Leah 欄目:編程語言

php中如何將json轉(zhuǎn)換成對象數(shù)組?這篇文章運用了實例代碼展示,代碼非常詳細,可供感興趣的小伙伴們參考借鑒,希望對大家有所幫助。

在php中可以使用json_decode函數(shù)將json轉(zhuǎn)成對象數(shù)組。

json_decode是php5.2.0之后新增的一個PHP內(nèi)置函數(shù),其作用是對JSON格式的字符串進行編碼.

那么這個函數(shù)該如何使用呢?

json_decode的語法規(guī)則:

json_decode ( string $json [, bool $assoc = false [, int $depth = 512 [, int $options = 0 ]]] )

json_decode接受一個JSON格式的字符串并且把它轉(zhuǎn)換為PHP變量 ,當該參數(shù)$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

訪問數(shù)組類型$json_Array的a的值

echo $json_Array['a'];

程序輸出:php

以上就是php中將json轉(zhuǎn)換成對象數(shù)組的具體操作,代碼詳細清楚,如果在日常工作遇到這個問題,希望你能通過這篇文章解決問題。如果想了解更多相關(guān)內(nèi)容,歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI