在PHP中可以透過「json_encode()」和「json_decode()」函數對json進行操作,其語法分別是「json_encode($arr);」和「json_decode($json)」。
推薦:《PHP影片教學》
從5.2版本開始,PHP原生提供json_encode()和json_decode ()函數,前者用於編碼,後者用於解碼。
json_encode()
此函數主要用來將陣列和對象,轉換為json格式。
代碼如下:
$arr = array ('a'=>'a','b'=>'b','c'='c','d'=>'d','e'='e'); echo json_encode($arr);
輸出結果:
json只接受utf-8編碼的字符,json_encode()的參數必須是utf-8編碼。
class person { public $name; public $age; public $height; function __construct($name,$age,$height) { $this->name = $name; $this->age = $age; $this->height = $height; } } $obj = new person("zhangsan",20,100); $foo_json = json_encode($obj); echo $foo_json;
輸出結果:
當類別中的屬性為私有變數的時候,則不會輸出。
json_decode()
此函數用於將json文字轉換為對應的PHP資料結構。
程式碼如下:
$json = '{"a":"hello","b":"world","c":"zhangsan","d":20,"e":170}'; var_dump(json_decode($json));
輸出結果:
通常情況下,json_decode()總是傳回一個PHP物件。
轉成陣列的:
程式碼如下:
$json = '{"a":"hello","b":"world","c":"zhangsan","d":20,"e":170}'; var_dump(json_decode($json,ture));
以上是php如何使用json方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!