validate json array php code example
Example: php check if json
function isJson($string) {
json_decode($string);
return (json_last_error() == JSON_ERROR_NONE);
}
function isJson($string) {
json_decode($string);
return (json_last_error() == JSON_ERROR_NONE);
}