How to determine whether a string is valid JSON?

前端 未结 6 1444
自闭症患者
自闭症患者 2020-12-15 03:12

Does anyone know of a robust (and bullet proof) is_JSON function snippet for PHP? I (obviously) have a situation where I need to know if a string is JSON or not.

Hmm

6条回答
  •  青春惊慌失措
    2020-12-15 04:01

    This is the best and efficient way

    function isJson($string) {
        return (json_decode($string) == null) ? false : true;
    }
    

提交回复
热议问题