溫馨提示×

溫馨提示×

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

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

php中如何將json轉(zhuǎn)換成對象

發(fā)布時間:2021-09-18 10:13:42 來源:億速云 閱讀:226 作者:小新 欄目:編程語言

這篇文章主要為大家展示了“php中如何將json轉(zhuǎn)換成對象”,內(nèi)容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領(lǐng)大家一起研究并學(xué)習(xí)一下“php中如何將json轉(zhuǎn)換成對象”這篇文章吧。

php json轉(zhuǎn)換成對象的方法:1、用json_decode對JSON格式的字符串進(jìn)行編碼;2、通過“foreach($students as $obj){...}”方式訪問即可。

本文操作環(huán)境:Windows7系統(tǒng)、PHP7.1版,Dell G3電腦

php json字符串轉(zhuǎn)為數(shù)組或?qū)ο?/strong>

從網(wǎng)上查到的方法是 用get_object_vars 把類類型轉(zhuǎn)換成數(shù)組 然后在用foreach  遍歷即可

$array = get_object_vars($test);
$json= '[{"id":"1","name":"\u5f20\u96ea\u6885","age":"27","subject":"\u8ba1\u7b97\u673a\u79d1\u5b66\u4e0e\u6280\u672f"},{"id":"2","name":"\u5f20\u6c9b\u9716","age":"21","subject":"\u8f6f\u4ef6\u5de5\u7a0b"}]';

首先要用 json_decode 對 JSON 格式的字符串進(jìn)行編碼,

    $students = json_decode($json);

直接在PHP文件用$students :

    for($i=0;$i<count($students);$i++){
         echo "姓名:".$students[$i]['name']."年齡:".$students[$i]['age']."專業(yè):".$students[$i]['subject']."<br/>";
    }

則報錯如下:

Fatal error: Cannot use objectof type stdClass as array in D:\wamp\www\test.phpon line 18

這時候打印一下 $students :

var_dump($students);

會輸出:

array(2) {
        [0]=>
        object(stdClass)#2 (4) {
             ["id"]=> string(1)"1"
             ["name"]=> string(9)"張雪梅"
             ["age"]=> string(2)"27"
        object(stdClass)#3 (4) {                              這個就說明轉(zhuǎn)換的json字符串轉(zhuǎn)為對象而非數(shù)組,請看下面的紅色背景字
             ["subject"]=>string(24) "計算機(jī)科學(xué)與技術(shù)"
        }
        [1]=>
            ["id"]=> string(1)"2"
            ["name"]=> string(9)"張沛霖"
            ["age"]=> string(2)"21"
           ["subject"]=> string(12) "軟件工程"
        }
    }

可見,返回的結(jié)果是 object 而非 array。應(yīng)以對象形式訪問:

    foreach($students as $obj){
         echo "姓名:".$obj->name."年齡:".$obj->age."專業(yè):".$obj->subject."<br/>";
    }

輸出結(jié)果為:

姓名:張雪梅   年齡:27   專業(yè):計算機(jī)科學(xué)與技術(shù)
   姓名:張沛霖   年齡:21   專業(yè):軟件工程

mixedjson_decode ( string$json [, bool$assoc ] )

說明:接受一個 JSON 格式的字符串并且把它轉(zhuǎn)換為 PHP 變量。

json_decode 可接收兩個參數(shù):

json:待解碼的jsonstring 格式的字符串。

assoc:當(dāng)該參數(shù)為 TRUE 時,將返回 array 而非 object 。

$students = json_decode($json,true);

這時打印一下 $students :

var_dump($students);

輸出:

  array(2) {
        [0]=>
        array(4) {
            ["id"]=> string(1)"1"
            ["name"]=> string(9)"張雪梅"
            ["age"]=> string(2)"27"
            ["subject"]=>string(24) "計算機(jī)科學(xué)與技術(shù)"
        }
        [1]=>
        array(4) {
           ["id"]=> string(1)"2"
           ["name"]=> string(9)"張沛霖"
           ["age"]=> string(2)"21"
           ["subject"]=>string(12) "軟件工程"
        }
    }

這時,$students 就是個數(shù)組了,可以直接用:

for($i=0;$i<count($students);$i++){
     echo "姓名:".$students[$i]['name']."年齡:".$students[$i]['age']."專業(yè):".$students[$i]['subject']."<br/>";
}

輸出結(jié)果為:

姓名:張雪梅   年齡:27   專業(yè):計算機(jī)科學(xué)與技術(shù)
   姓名:張沛霖   年齡:21   專業(yè):軟件工程

總結(jié):

在PHP代碼中處理JSON 格式的字符串的兩種方法:

方法一:

$json= '[{"id":"1","name":"\u5f20\u96ea\u6885","age":"27","subject":"\u8ba1\u7b97\u673a\u79d1\u5b66\u4e0e\u6280\u672f"},{"id":"2","name":"\u5f20\u6c9b\u9716","age":"21","subject":"\u8f6f\u4ef6\u5de5\u7a0b"}]';
$students= json_decode($json);//得到的是 object
foreach($studentsas $obj){
    echo "姓名:".$obj->name."&nbsp;&nbsp;&nbsp;年 齡:".$obj->age."&nbsp;&nbsp;&nbsp;專 業(yè):".$obj->subject."<br />";
}

方法二:

$json= '[{"id":"1","name":"\u5f20\u96ea\u6885","age":"27","subject":"\u8ba1\u7b97\u673a\u79d1\u5b66\u4e0e\u6280\u672f"},{"id":"2","name":"\u5f20\u6c9b\u9716","age":"21","subject":"\u8f6f\u4ef6\u5de5\u7a0b"}]';
$students= json_decode($json, true);//得到的是 array
for($i=0;$i<count($students);$i++){
    echo "姓名:".$students[$i]['name']."&nbsp;&nbsp;&nbsp;年 齡:".$students[$i]['age']."&nbsp;&nbsp;&nbsp;專 業(yè):".$students[$i]['subject']."<br />";

undefined

---------------------------------------------------------------------------------------------------------------------------------

php中如何將json轉(zhuǎn)換成對象

php中如何將json轉(zhuǎn)換成對象

php中如何將json轉(zhuǎn)換成對象

以上是“php中如何將json轉(zhuǎn)換成對象”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學(xué)習(xí)更多知識,歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問一下細(xì)節(jié)

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

AI