“PHP Cobalah untuk mendekode JSON” Kode Jawaban

php json_decode

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

$person = json_decode($personJSON);

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

PHP Cobalah untuk mendekode 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 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 Cobalah untuk mendekode JSON”

Pertanyaan yang mirip dengan “PHP Cobalah untuk mendekode JSON”

Lebih banyak jawaban terkait untuk “PHP Cobalah untuk mendekode JSON” di PHP

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya