判断是否json数据

function is_json($str){   
	$jd = json_decode($str,true);
	if(is_null($jd)) return false;
    if(count($jd)>0) return true; //count($jd)==0时候,可能是[];如果不需要[]的数据,则可这样写,否则,直接返回true了
    else return false; 
}  




   

你可能感兴趣的:(判断是否json数据)