“php coba json decode” Kode Jawaban

php json_decode

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

$person = json_decode($personJSON);

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

php coba json decode

/** 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 coba json decode dan periksa

// 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

Jawaban yang mirip dengan “php coba json decode”

Pertanyaan yang mirip dengan “php coba json decode”

Lebih banyak jawaban terkait untuk “php coba json decode” di PHP

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya