php陣列轉換成json的方法:先建立一個PHP範例檔案;然後定義一個陣列;最後透過「json_encode($arr);」方法將陣列如何轉換成json格式資料即可。
本教學操作環境:windows7系統、PHP5.6版,此方法適用於所有品牌電腦。
推薦:《PHP影片教學》
php陣列轉換成json的方法:
將PHP陣列轉換為JSON 格式資料
<?php $arr = array('a' => 1, 'b' => 2, 'c' => 3, 'd' => 4, 'e' => 5); echo json_encode($arr); ?>
以上程式碼執行結果為:
{"a":1,"b":2,"c":3,"d":4,"e":5}
函數 | 描述 |
---|---|
json_encode | 對變數進行JSON 編碼 |
json_decode | #對JSON 格式的字串進行解碼,轉換為PHP 變數 |
json_last_error | 傳回最後發生的錯誤 |
PHP json_encode()
用於對變數進行JSON 編碼,該函數如果執行成功返回JSON 數據,否則傳回FALSE 。
string json_encode ( $value [, $options = 0 ] )
<?php class Emp { public $name = ""; public $hobbies = ""; public $birthdate = ""; } $e = new Emp(); $e->name = "sachin"; $e->hobbies = "sports"; $e->birthdate = date('m/d/Y h:i:s a', "8/5/1974 12:20:03 p"); $e->birthdate = date('m/d/Y h:i:s a', strtotime("8/5/1974 12:20:03")); echo json_encode($e); ?>
{"name":"sachin","hobbies":"sports","birthdate":"08\/05\/1974 12:20:03 pm"}
mixed json_decode ($json_string [,$assoc = false [, $depth = 512 [, $options = 0 ]]])
實例
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) }
# 此方法適用於所有品牌的電腦。
以上是php 陣列如何轉換成json的詳細內容。更多資訊請關注PHP中文網其他相關文章!