PHP插入空字符串 到int字段报错的方法
//如果传的是空字符串 要处理成NULL 不然插入int字段会报错 foreach ($shuju as $k => $v) { if (empty($v)) { unset($shuju[$k]); } }