“Php Compruebe si JSON” Código de respuesta

Php Compruebe si JSON

function isJson($string) {
 json_decode($string);
 return (json_last_error() == JSON_ERROR_NONE);
}
SmokeFrog

Php Check String válido JSON

@json_decode($page_str);
$json_OK=	json_last_error() == JSON_ERROR_NONE;
steamboatid

Respuestas similares a “Php Compruebe si JSON”

Preguntas similares a “Php Compruebe si JSON”

Más respuestas relacionadas con “Php Compruebe si JSON” en PHP

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código