While this can obviously change between versions, the current error codes are as follows:
0 = JSON_ERROR_NONE
1 = JSON_ERROR_DEPTH
2 = JSON_ERROR_STATE_MISMATCH
3 = JSON_ERROR_CTRL_CHAR
4 = JSON_ERROR_SYNTAX
5 = JSON_ERROR_UTF8
I'm only posting these for people who may be trying to understand why specific JSON files are not being decoded. Please do not hard-code these numbers into an error handler routine.
json_last_error
(PHP 5 >= 5.3.0)
json_last_error — Oluşan son hatayı döndürür.
Açıklama
int json_last_error
( void
)
Son JSON çözümleyicisi tarafından (varsa) oluşan son hatayı döndürür.
Değiştirgeler
Bu işlevin değiştirgesi yoktur.
Dönen Değerler
Tamsayı döndürür, ve değeri aşağıdaki sabitler olabilir:
| Sabit | Anlamı | Geçerlilik |
|---|---|---|
JSON_ERROR_NONE |
Hata bulunamadı | |
JSON_ERROR_DEPTH |
Azami yığın derinliği aşıldı | |
JSON_ERROR_CTRL_CHAR |
Denetim karakteri hatası, muhtemelen yanlış kodlanmış | |
JSON_ERROR_SYNTAX |
Sözdizimi hatası | |
JSON_ERROR_UTF8 |
UTF-8 karakter kodlama hatası, muhtemelen yanlış kodlanmış | PHP 5.3.1 |
Örnekler
Örnek 1 json_last_error() örneği
<?php
// Geçerli json dizgesi
$json[] = '{"Organization": "PHP Documentation Team"}';
// Geçersiz json dizgesi sözdizimi hatasına sebep
// olur, bu durumda biz tırnak için ' yerine "
// kullanırız
$json[] = "{'Organization': 'PHP Documentation Team'}";
foreach($json as $string)
{
echo 'Decoding: ' . $string;
json_decode($string);
switch(json_last_error())
{
case JSON_ERROR_DEPTH:
echo ' - Azami yığın derinliği aşıldı';
break;
case JSON_ERROR_CTRL_CHAR:
echo ' - Beklenmeyen kontol karakteri bulundu';
break;
case JSON_ERROR_SYNTAX:
echo ' - Sözdizimi hatası, kusurlu JSON';
break;
case JSON_ERROR_NONE:
echo ' - Hatasız';
break;
}
echo PHP_EOL;
}
?>
Yukarıdaki örneğin çıktısı:
Decoding: {"Organization": "PHP Documentation Team"} - Hatasız
Decoding: {'Organization': 'PHP Documentation Team'} - Sözdizimi hatası, kusurlu JSON
jimmetry at gmail dot com ¶
1 year ago
lior at mytopia dot com ¶
4 years ago
For those of you who prefer a more object oriented approach (as I do), here is a fairly simple wrapper that handles errors using exceptions:
<?php
class JSON
{
public static function Encode($obj)
{
return json_encode($obj);
}
public static function Decode($json, $toAssoc = false)
{
$result = json_decode($json, $toAssoc);
switch(json_last_error())
{
case JSON_ERROR_DEPTH:
$error = ' - Maximum stack depth exceeded';
break;
case JSON_ERROR_CTRL_CHAR:
$error = ' - Unexpected control character found';
break;
case JSON_ERROR_SYNTAX:
$error = ' - Syntax error, malformed JSON';
break;
case JSON_ERROR_NONE:
default:
$error = '';
}
if (!empty($error))
throw new Exception('JSON Error: '.$error);
return $result;
}
}
?>
