可以使用json_decode()
函數將JSON字符串轉換成數組。例如:
$jsonString = '{"name": "John", "age": 30, "city": "New York"}';
$array = json_decode($jsonString, true);
print_r($array);
上面的代碼將JSON字符串$jsonString
轉換成數組$array
,然后使用print_r()
函數打印出數組的內容。設置json_decode()
函數的第二個參數為true
可以將JSON對象轉換成關聯數組,而不是默認的對象。