“PHP Try JSON Decode e verifique” Respostas de código

php json_decode

$personJSON = '{"name":"Johny Carson","title":"CTO"}';

$person = json_decode($personJSON);

echo $person->name; // Johny Carson
Grepper

PHP decodificar o objeto JSON

<?php

$json = '{"firstName":"Peter","lastName:":"Silva","age":23}';

$personInfo = json_decode(json);

echo $personInfo->age;

?>
Apollo

PHP Try JSON Decode e verifique

// Checks if json
function isJson($string) {
   json_decode($string);
   return json_last_error() === JSON_ERROR_NONE;
}

// example
if (isJson($string) {
  // Do your stuff here
}
MaestroError

Respostas semelhantes a “PHP Try JSON Decode e verifique”

Perguntas semelhantes a “PHP Try JSON Decode e verifique”

Mais respostas relacionadas para “PHP Try JSON Decode e verifique” em PHP

Procure respostas de código populares por idioma

Procurar outros idiomas de código