php如何將字串轉換json

2020-08-12 12:00:59

php將字串轉換json的方法:首先建立一個PHP範例檔案;然後使用「var_dump(json_decode($json));」方法轉換json即可。

推薦:《》

php將字串轉換json

<?php
$json = '{"a":1,"b":2,"c":3,"d":4,"e":5}';
var_dump(json_decode($json));
var_dump(json_decode($json, true));?>

結果分別是

object(stdClass)#1 (5) {
    ["a"] => int(1)
    ["b"] => int(2)
    ["c"] => int(3)
    ["d"] => int(4)
    ["e"] => int(5)
}
array(5) {
    ["a"] => int(1)
    ["b"] => int(2)
    ["c"] => int(3)
    ["d"] => int(4)
    ["e"] => int(5)
}

如果你json_decode後返回null,你是不是把字串寫成這樣了"{ 'bar': 'baz' }",這個在JS裡是可以正常解析成JSON的,但是PHP裏面要寫成'{ "bar": "baz" }',屬性和值要用雙引號。

以上就是php如何將字串轉換json的詳細內容,更多請關注php中文網其它相關文章!