Skip to content

Instantly share code, notes, and snippets.

@yehchge
Created February 8, 2022 07:34
Show Gist options
  • Save yehchge/5e94ac28092a4fb6efcd28a405995be7 to your computer and use it in GitHub Desktop.
Save yehchge/5e94ac28092a4fb6efcd28a405995be7 to your computer and use it in GitHub Desktop.
php is_json value
<?php
function is_json($json_string = "")
{
return is_string($json_string) &&
is_array(json_decode($json_string, true)) &&
(json_last_error() == JSON_ERROR_NONE) ? true : false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment