Skip to content

Instantly share code, notes, and snippets.

@nikolayvitaev
Created May 8, 2019 08:45
Show Gist options
  • Save nikolayvitaev/dda29cac68d1df88cc234430a0fef9ec to your computer and use it in GitHub Desktop.
Save nikolayvitaev/dda29cac68d1df88cc234430a0fef9ec to your computer and use it in GitHub Desktop.
Check is json string on php
function isJson($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