“php json_decode não está funcionando” Respostas de código

php json_decode

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

$person = json_decode($personJSON);

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

PHP JSON decodifica não funcionando na matriz

//"[{\"name\": \"bill\", \"score\": 0.7948127388954163}, {\"name\": \"john\", \"score\": 0.782698392868042}]";
//for json in above format try this
$r=json_decode(stripcslashes(trim($response,'"')));
Friendly Hawk

PHP decodificar o objeto JSON

<?php

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

$personInfo = json_decode(json);

echo $personInfo->age;

?>
Apollo

PHP Tente decodificar JSON

/** Checks if JSON and returns decoded as an array, if not, returns false, 
but you can pass the second parameter true, if you need to return
a string in case it's not JSON */
function tryJsonDecode($string, $returnString = false) {
   $arr = json_decode($string);
  if (json_last_error() === JSON_ERROR_NONE) {
    return $arr;
  } else {
    return ($returnString) ? $string : false;
  }
}
MaestroError

php json_decode não está funcionando

You have to use preg_replace for avoiding the null results from json_decode

here is the example code

$json_string = stripslashes(html_entity_decode($json_string));
$bookingdata =  json_decode( preg_replace('/[\x00-\x1F\x80-\xFF]/', '', $json_string), true ); 
Ankur

Respostas semelhantes a “php json_decode não está funcionando”

Perguntas semelhantes a “php json_decode não está funcionando”

Mais respostas relacionadas para “php json_decode não está funcionando” em PHP

Procure respostas de código populares por idioma

Procurar outros idiomas de código