很多PHPER在开发中数据交互时用的JSON格式,但是没有做很严格的校验,比如一个串是否是正确的json而直接json_decode($str,true), 个人建议在decode前做下校验,防止因为bom头导致json解析失败而引起程序警告: /** * 判断是否字符串是否是JSON * * @param type $string * @param type $datas * @author RTS 2015年8月3日16:32:23 * @return boolean */ public s…