सवाल का जवाब है
फ़ंक्शन json_last_error
JSON एन्कोडिंग और डीकोडिंग के दौरान हुई अंतिम त्रुटि देता है। तो वैध JSON की जाँच करने का सबसे तेज़ तरीका है
// decode the JSON data
// set second parameter boolean TRUE for associative array output.
$result = json_decode($json);
if (json_last_error() === JSON_ERROR_NONE) {
// JSON is valid
}
// OR this is equivalent
if (json_last_error() === 0) {
// JSON is valid
}
ध्यान दें कि json_last_error
PHP> = 5.3.0 में ही समर्थित है।
पूर्ण कार्यक्रम सटीक ERROR की जांच करने के लिए
विकास समय के दौरान सटीक त्रुटि जानना हमेशा अच्छा होता है। PHP डॉक्स के आधार पर सटीक त्रुटि की जांच करने के लिए यहां पूरा कार्यक्रम है।
function json_validate($string)
{
// decode the JSON data
$result = json_decode($string);
// switch and check possible JSON errors
switch (json_last_error()) {
case JSON_ERROR_NONE:
$error = ''; // JSON is valid // No error has occurred
break;
case JSON_ERROR_DEPTH:
$error = 'The maximum stack depth has been exceeded.';
break;
case JSON_ERROR_STATE_MISMATCH:
$error = 'Invalid or malformed JSON.';
break;
case JSON_ERROR_CTRL_CHAR:
$error = 'Control character error, possibly incorrectly encoded.';
break;
case JSON_ERROR_SYNTAX:
$error = 'Syntax error, malformed JSON.';
break;
// PHP >= 5.3.3
case JSON_ERROR_UTF8:
$error = 'Malformed UTF-8 characters, possibly incorrectly encoded.';
break;
// PHP >= 5.5.0
case JSON_ERROR_RECURSION:
$error = 'One or more recursive references in the value to be encoded.';
break;
// PHP >= 5.5.0
case JSON_ERROR_INF_OR_NAN:
$error = 'One or more NAN or INF values in the value to be encoded.';
break;
case JSON_ERROR_UNSUPPORTED_TYPE:
$error = 'A value of a type that cannot be encoded was given.';
break;
default:
$error = 'Unknown JSON error occured.';
break;
}
if ($error !== '') {
// throw the Exception or exit // or whatever :)
exit($error);
}
// everything is OK
return $result;
}
मान्य JSON INPUT के साथ परीक्षण
$json = '[{"user_id":13,"username":"stack"},{"user_id":14,"username":"over"}]';
$output = json_validate($json);
print_r($output);
मान्य OUTPUT
Array
(
[0] => stdClass Object
(
[user_id] => 13
[username] => stack
)
[1] => stdClass Object
(
[user_id] => 14
[username] => over
)
)
अमान्य JSON के साथ परीक्षण
$json = '{background-color:yellow;color:#000;padding:10px;width:650px;}';
$output = json_validate($json);
print_r($output);
अमान्य परिणाम
Syntax error, malformed JSON.
(PHP> = 5.2 और& PHP <5.3.0) के लिए अतिरिक्त नोट
चूंकि json_last_error
PHP 5.2 में समर्थित नहीं है, आप जाँच सकते हैं कि एन्कोडिंग या डिकोडिंग रिटर्न बूलियन है या नहीं FALSE
। यहाँ एक उदाहरण है
// decode the JSON data
$result = json_decode($json);
if ($result === FALSE) {
// JSON is invalid
}
आशा है कि यह उपयोगी है। हैप्पी कोडिंग!
json_decode
एक बार उपयोग करने पर विचार करें ... इसके अलावा, इनपुट और रिटर्न मान की जांच करेंjson_decode
।