// Checks if json function isJson($string) { json_decode($string); return json_last_error() === JSON_ERROR_NONE; } // example if (isJson($string) { // Do your stuff here }