Answers for "php how r o check is json or not"

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
-1

php check valid json string

@json_decode($page_str);
$json_OK=	json_last_error() == JSON_ERROR_NONE;
Posted by: Guest on January-12-2021

Code answers related to "php how r o check is json or not"

Browse Popular Code Answers by Language