Skip to content

Instantly share code, notes, and snippets.

@jwadhwani
Last active July 24, 2017 09:24
Show Gist options
  • Save jwadhwani/29b92ec89c42a79bf00b to your computer and use it in GitHub Desktop.
Save jwadhwani/29b92ec89c42a79bf00b to your computer and use it in GitHub Desktop.
is_json() for PHP
<?php
function is_json($value = null){
$ret = true;
if(null === @json_decode($value)){
$ret = false;
}
return $ret;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment