Answers for "php check if object json or string"

PHP
2

php check if json

function isJson($string) {
 json_decode($string);
 return (json_last_error() == JSON_ERROR_NONE);
}
Posted by: Guest on April-09-2020

Code answers related to "php check if object json or string"

Browse Popular Code Answers by Language