downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

Misc.> <json_encode
Last updated: Fri, 20 Nov 2009

view this page in

json_last_error

(PHP 5 >= 5.3.0)

json_last_errorÎntoarce ultima eroare ce a survenit

Descrierea

int json_last_error ( void )

Întoarce ultima eroare (dacă este prezentă) care a survenit la interpretarea JSON.

Parametri

Această funcţie nu are parametri.

Valorile întroarse

Întoarce un întreg. Valoarea poate fi una din următoarele constante:

Codurile de eroare JSON
Constantă Semnificație
JSON_ERROR_NONE Nu a survenit vre-o eroare
JSON_ERROR_DEPTH A fost depășită limita maximă de imbricare
JSON_ERROR_CTRL_CHAR Eroare a caracterului de control, posibil este codificat incorect
JSON_ERROR_SYNTAX Eroare de sintaxă

Exemple

Example #1 Exemplu json_last_error()

<?php
// Un string JSON valid
$json[] = '{"Organization": "PHP Documentation Team"}';

// Un string JSON invalid ce va cauza o eroare de sintaxă
// în acest caz am utilizat ' în loc de " pentru citație
$json[] = "{'Organization': 'PHP Documentation Team'}";


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

    switch(
json_last_error())
    {
        case 
JSON_ERROR_DEPTH:
            echo 
' - Maximum stack depth exceeded';
        break;
        case 
JSON_ERROR_CTRL_CHAR:
            echo 
' - Unexpected control character found';
        break;
        case 
JSON_ERROR_SYNTAX:
            echo 
' - Syntax error, malformed JSON';
        break;
        case 
JSON_ERROR_NONE:
            echo 
' - No errors';
        break;
    }

    echo 
PHP_EOL;
}
?>

Exemplul de mai sus va afişa:

Decoding: {"Organization": "PHP Documentation Team"} - No errors
Decoding: {'Organization': 'PHP Documentation Team'} - Syntax error, malformed JSON

Vedeţi de asemenea

  • json_decode() - Converteşte într-o variabilă un şir reprezentat JSON



add a note add a note User Contributed Notes
json_last_error
lior at mytopia dot com
09-Mar-2009 01:17
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;
    }
}

?>

Misc.> <json_encode
Last updated: Fri, 20 Nov 2009
 
 
show source | credits | stats | sitemap | contact | advertising | mirror sites