Skip to content

Instantly share code, notes, and snippets.

@dflima
Last active December 23, 2015 12:59
Show Gist options
  • Select an option

  • Save dflima/6638660 to your computer and use it in GitHub Desktop.

Select an option

Save dflima/6638660 to your computer and use it in GitHub Desktop.
Verify if a given $string is a json.
<?php
function is_json($string)
{
json_decode($string);
return (json_last_error() == JSON_ERROR_NONE);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment