在 PHP 中,可以使用 json_decode()
函數來高效地解析 JSON 數據
首先,確保你的 PHP 版本支持 json_decode()
函數。這個函數從 PHP 5.2.0 版本開始就可以使用了。
使用 json_decode()
函數將 JSON 字符串轉換為 PHP 對象或關聯數組。例如:
$json_string = '{"name": "John", "age": 30, "city": "New York"}';
// 將 JSON 字符串轉換為 PHP 對象
$json_object = json_decode($json_string);
// 將 JSON 字符串轉換為 PHP 關聯數組
$json_array = json_decode($json_string, true);
// 使用對象語法訪問數據
echo $json_object->name; // 輸出 "John"
echo $json_object->age; // 輸出 30
echo $json_object->city; // 輸出 "New York"
// 使用數組語法訪問數據
echo $json_array['name']; // 輸出 "John"
echo $json_array['age']; // 輸出 30
echo $json_array['city']; // 輸出 "New York"
$json_string = '{"person": {"name": "John", "age": 30, "address": {"city": "New York", "country": "USA"}}}';
$json_object = json_decode($json_string);
echo $json_object->person->name; // 輸出 "John"
echo $json_object->person->address->city; // 輸出 "New York"
json_decode()
函數解析失敗,可以通過檢查 json_last_error()
函數的返回值來獲取錯誤信息。例如:if (json_last_error() !== JSON_ERROR_NONE) {
echo 'JSON 解析錯誤: ' . json_last_error_msg();
}
通過以上方法,你可以在 PHP 中高效地解析和處理 JSON 數據。