json_last_error

(PHP 5 >= 5.3.0, PHP 7, PHP 8)

json_last_errorGibt den letzten aufgetretenen Fehler zurück

Beschreibung

json_last_error ( ) : int

Gibt (sofern vorhanden) den letzten Fehler zurück, der beim letzten Kodieren/Dekodieren von JSON, das JSON_THROW_ON_ERROR nicht angab, aufgetreten ist.

Parameter-Liste

Diese Funktion besitzt keine Parameter.

Rückgabewerte

Gibt einen Integer zurück, der Wert kann eine der folgenden Konstanten sein:

JSON-Fehlercodes
Konstante Bedeutung Verfügbarkeit
JSON_ERROR_NONE Kein Fehler aufgetreten.  
JSON_ERROR_DEPTH Die maximale Stacktiefe wurde überschritten.  
JSON_ERROR_STATE_MISMATCH Ungültiges oder missgestaltetes JSON  
JSON_ERROR_CTRL_CHAR Steuerzeichenfehler, möglicherweise unkorrekt kodiert.  
JSON_ERROR_SYNTAX Syntaxfehler.  
JSON_ERROR_UTF8 Missgestaltete UTF-8 Zeichen, möglicherweise fehlerhaft kodiert PHP 5.3.3
JSON_ERROR_RECURSION Eine oder mehrere rekursive Referenzen im zu kodierenden Wert PHP 5.5.0
JSON_ERROR_INF_OR_NAN Eine oder mehrere NAN oder INF Werte im zu kodierenden Wert PHP 5.5.0
JSON_ERROR_UNSUPPORTED_TYPE Ein Wert eines Typs, der nicht kodiert werden kann, wurde übergeben PHP 5.5.0
JSON_ERROR_INVALID_PROPERTY_NAME Ein Eigenschaftsname, der nicht kodiert werden kann, wurde übergeben PHP 7.0.0
JSON_ERROR_UTF16 Deformierte UTF-16 Zeichen; möglicherweise fehlerhaft kodiert PHP 7.0.0

Beispiele

Beispiel #1 json_last_error()-Beispiel

<?php
// Ein gültiger JSON-String
$json[] = '{"Organisation": "PHP-Dokumentationsteam"}';

// Ein ungültiger JSON-String, der einen Syntaxfehler hervorruft,
// in diesem Fall werden ' anstelle von " als Anführungszeichen verwendet
$json[] = "{'Organisation': 'PHP-Dokumentationsteam'}";


foreach(
$json as $string) {
    echo 
'Dekodiere: ' $string;
    
json_decode($string);

    switch(
json_last_error()) {
        case 
JSON_ERROR_NONE:
            echo 
' - Keine Fehler';
        break;
        case 
JSON_ERROR_DEPTH:
            echo 
' - Maximale Stacktiefe überschritten';
        break;
        case 
JSON_ERROR_STATE_MISMATCH:
            echo 
' - Unterlauf oder Nichtübereinstimmung der Modi';
        break;
        case 
JSON_ERROR_CTRL_CHAR:
            echo 
' - Unerwartetes Steuerzeichen gefunden';
        break;
        case 
JSON_ERROR_SYNTAX:
            echo 
' - Syntaxfehler, ungültiges JSON';
        break;
        case 
JSON_ERROR_UTF8:
            echo 
' - Missgestaltete UTF-8 Zeichen, möglicherweise fehlerhaft kodiert';
        break;
        default:
            echo 
' - Unbekannter Fehler';
        break;
    }

    echo 
PHP_EOL;
}
?>

Das oben gezeigte Beispiel erzeugt folgende Ausgabe:

Decoding: {"Organisation": "PHP-Dokumentationsteam"} - Keine Fehler
Decoding: {'Organisation': 'PHP-Dokumentationsteam'} - Syntaxfehler, ungültiges JSON

Beispiel #2 json_last_error() mit json_encode()

<?php
// Eine ungültige UTF8 Sequenz
$text "\xB1\x31";

$json  json_encode($text);
$error json_last_error();

var_dump($json$error === JSON_ERROR_UTF8);
?>

Das oben gezeigte Beispiel erzeugt folgende Ausgabe:

string(4) "null"
bool(true)

Beispiel #3 json_last_error() und JSON_THROW_ON_ERROR

<?php
// Eine ungültige UTF8 Sequenz, die ein JSON_ERROR_UTF8 verursacht
json_encode("\xB1\x31");

// Das folgende verursacht keinen JSON Fehler
json_encode('okay'JSON_THROW_ON_ERROR);

// Der globale Fehlerzustand wurde durch das vorherige json_encode nicht geändert
var_dump(json_last_error() === JSON_ERROR_UTF8);
?>

Das oben gezeigte Beispiel erzeugt folgende Ausgabe:

bool(true)

Siehe auch

add a note add a note

User Contributed Notes 8 notes

up
262
jimmetry at gmail dot com
12 years ago
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.
up
34
praveenscience at gmail dot com
9 years ago
I used this simple script, flicked from StackOverflow to escape from the function failing:

<?php
   
function utf8ize($d) {
        if (
is_array($d)) {
            foreach (
$d as $k => $v) {
               
$d[$k] = utf8ize($v);
            }
        } else if (
is_string ($d)) {
            return
utf8_encode($d);
        }
        return
$d;
    }
?>

Cheers,
Praveen Kumar!
up
8
msxcms at bmforum dot com
6 years ago
use this code with mb_convert_encoding, you can json_encode some corrupt UTF-8 chars

    function safe_json_encode($value, $options = 0, $depth = 512) {
        $encoded = json_encode($value, $options, $depth);
        if ($encoded === false && $value && json_last_error() == JSON_ERROR_UTF8) {
            $encoded = json_encode(utf8ize($value), $options, $depth);
        }
        return $encoded;
    }

    function utf8ize($mixed) {
        if (is_array($mixed)) {
            foreach ($mixed as $key => $value) {
                $mixed[$key] = utf8ize($value);
            }
        } elseif (is_string($mixed)) {
            return mb_convert_encoding($mixed, "UTF-8", "UTF-8");
        }
        return $mixed;
    }
up
26
hemono at gmail dot com
8 years ago
when json_decode a empty string, PHP7 will trigger an Syntax error:
<?php
json_decode
("");
var_dump(json_last_error(), json_last_error_msg());

// PHP 7
int(4)
string(12) "Syntax error"

//  PHP 5
int(0)
string(8) "No error"
up
8
George Dimitriadis
7 years ago
Just adding this note since I had to code this for the actual values reference.

<?php

echo JSON_ERROR_NONE . ' JSON_ERROR_NONE' . '<br />';
echo
JSON_ERROR_DEPTH . ' JSON_ERROR_DEPTH' . '<br />';
echo
JSON_ERROR_STATE_MISMATCH . ' JSON_ERROR_STATE_MISMATCH' . '<br />';
echo
JSON_ERROR_CTRL_CHAR . ' JSON_ERROR_CTRL_CHAR' . '<br />';
echo
JSON_ERROR_SYNTAX . ' JSON_ERROR_SYNTAX' . '<br />';
echo
JSON_ERROR_UTF8 . ' JSON_ERROR_UTF8' . '<br />';
echo
JSON_ERROR_RECURSION . ' JSON_ERROR_RECURSION' . '<br />';
echo
JSON_ERROR_INF_OR_NAN . ' JSON_ERROR_INF_OR_NAN' . '<br />';
echo
JSON_ERROR_UNSUPPORTED_TYPE . ' JSON_ERROR_UNSUPPORTED_TYPE' . '<br />';

/*
The above outputs :
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
6 JSON_ERROR_RECURSION
7 JSON_ERROR_INF_OR_NAN
8 JSON_ERROR_UNSUPPORTED_TYPE
*/

?>
up
8
williamprogphp at yahoo dot com dot br
10 years ago
This is a quite simple and functional trick to validate JSON's strings.

<?php

   
function json_validate($string) {
        if (
is_string($string)) {
            @
json_decode($string);
            return (
json_last_error() === JSON_ERROR_NONE);
        }
        return
false;
    }
    echo (
json_validate('{"test": "valid JSON"}')  ? "It's a JSON" : "NOT is a JSON"); // prints 'It's a JSON'
   
echo (json_validate('{test: valid JSON}')  ? "It's a JSON" : "NOT is a JSON"); // prints 'NOT is a JSON' due to missing quotes
   
echo (json_validate(array())  ? "It's a JSON" : "NOT is a JSON"); // prints 'NOT is a JSON' due to a non-string argument
?>

Cheers
up
0
jairospino at ingenieros dot com
3 years ago
Esta clase de ejemplo muestra como podríamos validar si un Json tiene el formato correctamente.

<?php

class Biblioteca
{  

    
// Se valida que el formato Json este correctamente    
   
public function validarJson($json = 'error')
    {
       
       
$retornaJson = json_decode($json);
       
        switch (
json_last_error()) {
            case
JSON_ERROR_NONE:
               
$error = '';
                break;
            case
JSON_ERROR_DEPTH:
               
$error = 'Se superó la profundidad máxima de la pila.';
                break;
            case
JSON_ERROR_STATE_MISMATCH:
               
$error = 'JSON inválido o mal formado.';
                break;
            case
JSON_ERROR_CTRL_CHAR:
               
$error = 'Error de carácter de control, posiblemente codificado incorrectamente.';
                break;
            case
JSON_ERROR_SYNTAX:
               
$error = 'Error de sintaxis, JSON con formato incorrecto.';
                break;
            case
JSON_ERROR_UTF8:
               
$error = 'Caracteres UTF-8 con formato incorrecto, posiblemente codificados incorrectamente.';
                break;
            case
JSON_ERROR_RECURSION:
               
$error = 'Una o más referencias recursivas en el valor a codificar.';
                break;
            case
JSON_ERROR_INF_OR_NAN:
               
$error = 'Uno o más valores NaN o InF en el valor que se va a codificar.';
                break;
            case
JSON_ERROR_UNSUPPORTED_TYPE:
               
$error = 'Se proporcionó un valor de un tipo que no se puede codificar.';
                break;
            default:
               
$error = 'Ocurrió un error JSON desconocido.';
                break;
        }

        if (
$error !== '') {           
            return
$error;
        }
       
        return
$retornaJson;
    }

  
/**   respuestaJson($msn, $estado, $data)
     *  -   Envía una respuesta a la solicitud realizada por el usuario
     * 
     *      # Parámetros que recibe
     *
     *      @msn   : indica el mensaje que el usuario tendrá como respuesta a su solicitud
     *
     *      @data  : contiene los datos de la respuesta en formato Json
     *
     *      @estado: muestra el estado de la respuesta a la solicitud realizada por el usuario o sistema
     *               Este estado es especificado por el <<desarrollador>>
     *     
     *      Nota:  se puede reemplazar "JSON_ERROR_NONE" por "0" y funciona igual
     */
   
public function respuestaJson(string $msn = 'Sin mensaje', string $estado = 'ok', string $data = null): string
   
{
       
// en caso que se reciban datos
        // se verifica que tengan el formato Json correcto       
       
if ($data) {
           
$testJson = $this->validarJson($data);           
            if (
json_last_error() !== JSON_ERROR_NONE) {
               
$estado = 'error';
               
$msn = $testJson;
               
$data = null;               
            }           
        }

       
$jsonRespuesta = array(
           
"estado"  => $estado,
           
"mensaje" => $msn,
           
"data"    => $data
       
);      

        return
json_encode($jsonRespuesta, JSON_UNESCAPED_UNICODE);
    }
   
}

$verMns = new Biblioteca();

echo
$verMns->respuestaJson('Petición exitosa', 'ok','{"id":1122,"nombre":"Jair Ospino Ardila"}');

//Tendríamos como respuesta

{
estado: "ok",
mensaje: "Petición exitosa",
data: "{"id":1122,"nombre":"Jair Ospino Ardila"}"
}
up
0
wedge at atlanteans dot net
6 years ago
here is a small updated version of utf8ize that has the following addition :
* It uses iconv instead of utf8_encode for potentially better result.
* It adds the support of objects variable
* It also update array key value (in a case I met I had to utf8ize the key as well as those were generated from a user input value)

Here is the code.

<?php
   
function utf8ize($d) {
        if (
is_array($d)) {
            foreach (
$d as $k => $v) {
                unset(
$d[$k]);
       
$d[utf8ize($k)] = utf8ize($v);
            }
        } else if (
is_object($d)) {
       
$objVars = get_object_vars($d);
        foreach(
$objVars as $key => $value) {
       
$d->$key = utf8ize($value);
        }       
    } else if (
is_string ($d)) {
            return
iconv('UTF-8', 'UTF-8//IGNORE', utf8_encode($d));
        }
        return
$d;
    }
?>
To Top