這篇文章將為大家詳細講解有關php中有哪些json相關的函數,文章內容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。
函數列表:
函數 | 描述 |
---|---|
json_encode | 對變量進行json編碼 |
json_decode | 對json格式的字符串進行解碼,轉換為php變量 |
json_last_error | 返回最后發生的錯誤 |
For example 1:json_encode
$arr=array("A"=>"a","B"=>"b","C"=>"c","D"=>"d"); echo json_encode($arr);
output:
{"A":"a","B":"b","C":"c","D":"d"}
For example 2:json_decode
$arr='{"A":"a","B":"b","C":"c","D":"d"}'; var_dump(json_decode($arr)); var_dump(json_decode($arr,true));
output:
object(stdClass)[1] public 'A' => string 'a' (length=1) public 'B' => string 'b' (length=1) public 'C' => string 'c' (length=1) public 'D' => string 'd' (length=1) array (size=4) 'A' => string 'a' (length=1) 'B' => string 'b' (length=1) 'C' => string 'c' (length=1) 'D' => string 'd' (length=1)
關于php中有哪些json相關的函數就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
網站欄目:php中有哪些json相關的函數-創新互聯
網站網址:http://m.kartarina.com/article48/ccgeep.html
成都網站建設公司_創新互聯,為您提供企業網站制作、網站維護、App開發、手機網站建設、網站營銷、建站公司
聲明:本網站發布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創新互聯