📅  最后修改于: 2022-03-11 14:54:42.748000             🧑  作者: Mango
// Checks if json
function isJson($string) {
json_decode($string);
return json_last_error() === JSON_ERROR_NONE;
}
// example
if (isJson($string) {
// Do your stuff here
}