if (!function_exists('isJson')) {
/**
* 判断字符串是否为 Json 格式
*
* @param string $data Json 字符串
* @param bool $assoc 是否返回关联数组。默认返回对象
* @param bool $htmlspecialchars_decode 是否进行html反转义
* @return array|bool|object 成功返回转换后的对象或数组,失败返回 false
*/
function isJson($data = '', $assoc = false, $htmlspecialchars_decode = false)
{
$data = json_decode($data, $assoc);
if ($htmlspecialchars_decode) {
if (($data && is_object($data)) || (is_array($data) && !empty($data))) {
return $data;
}
} else {
if (($data && is_object(htmlspecialchars_decode($data))) || (is_array(htmlspecialchars_decode($data)) && !empty(htmlspecialchars_decode($data)))) {
return $data;
}
}
return false;
}
}