Does anyone know of a robust (and bullet proof) is_JSON function snippet for PHP? I (obviously) have a situation where I need to know if a string is JSON or not.
Hmm
This is the best and efficient way
function isJson($string) { return (json_decode($string) == null) ? false : true; }