web-dev-qa-db-fra.com

Comment valider JSON en PHP?

Existe-t-il un moyen de vérifier qu’une variable est une chaîne JSON valide dans PHP sans utiliser json_last_error()? Je n'ai pas PHP 5.3.3.

20
user955822
$ob = json_decode($json);
if($ob === null) {
 // $ob is null because the json cannot be decoded
}
46
Jeff Lambert
$data = json_decode($json_string);
if (is_null($data)) {
   die("Something dun gone blowed up!");
}
10
Marc B

Si vous voulez vérifier si votre entrée est un JSON valide, vous voudrez peut-être aussi savoir s'il suit ou non un format spécifique, c'est-à-dire un schéma. Dans ce cas, vous pouvez définir votre schéma à l'aide de Schéma JSON _ et le valider à l'aide de cette bibliothèque .

Exemple:

person.json

{
    "title": "Person",
    "type": "object",
    "properties": {
        "firstName": {
            "type": "string"
        },
        "lastName": {
            "type": "string"
        },
        "age": {
            "description": "Age in years",
            "type": "integer",
            "minimum": 0
        }
    },
    "required": ["firstName", "lastName"]
}

Validation

<?php

$data = '{"firstName":"Hermeto","lastName":"Pascoal"}';

$validator = new JsonSchema\Validator;
$validator->validate($data, (object)['$ref' => 'file://' . realpath('person.json')]);

$validator->isValid()
2
Jefferson Lima

Vous pouvez vérifier si la valeur de json_decode est null. Si c'est le cas, c'est invalide.

2
Alex Turpin

En outre, vous pouvez consulter http://php.net/manual/fr/function.json-last-error-msg.php qui contient les implémentations de la fonction manquante.

L'un d'eux est:

if (!function_exists('json_last_error_msg')) {
        function json_last_error_msg() {
            static $ERRORS = array(
                JSON_ERROR_NONE => 'No error',
                JSON_ERROR_DEPTH => 'Maximum stack depth exceeded',
                JSON_ERROR_STATE_MISMATCH => 'State mismatch (invalid or malformed JSON)',
                JSON_ERROR_CTRL_CHAR => 'Control character error, possibly incorrectly encoded',
                JSON_ERROR_SYNTAX => 'Syntax error',
                JSON_ERROR_UTF8 => 'Malformed UTF-8 characters, possibly incorrectly encoded'
            );

            $error = json_last_error();
            return isset($ERRORS[$error]) ? $ERRORS[$error] : 'Unknown error';
        }
    }

(Copié collé depuis le site)

0
Dimitrios Desyllas