PHP - Funzione json_last_error_msg ()
La funzione json_last_error_msg () può restituire una stringa di errore dell'ultima chiamata json_encode () o json_decode ().
Sintassi
string json_last_error_msg( void )
La funzione json_last_error_msg () può restituire un messaggio di errore in caso di successo, "Nessun errore" se non si è verificato alcun errore o falso in caso di fallimento. Questa funzione non ha parametri.
Esempio 1
<?php
$json = '{"name": "Adithya", "age": 20 }';
$decode = json_decode($json, true);
$last_error = json_last_error_msg();
if(strtolower($last_error) != "No Error") {
echo "ERROR: " . $last_error; die;
}
?>
Produzione
ERROR: No error
Esempio 2
<?php
$json = '{"site":"dev.tutorialspoint.com","topics":{"PHP":"Y","JSON":"Y"]}';
print("\nInput: ".$json."\n");
$array = json_decode($json,true);
if(json_last_error() == JSON_ERROR_NONE) {
print("\nOutput Array:\n");
print(" Type: " . gettype($array) . "\n");
print(" Size: " . count($array) . "\n");
print(" ['site']: " . $array["site"] . "\n");
print(" ['topics']['JSON']: " . $array["topics"]["JSON"] . "\n");
print("\n Output Array Dump:\n");
var_dump($array);
} else {
print("\n json_decode() error: " . json_last_error_msg(). "\n");
}
?>
Produzione
Input: {"site":"dev.tutorialspoint.com","topics":{"PHP":"Y","JSON":"Y"]}
json_decode() error: State mismatch (invalid or malformed JSON)