打印插入日志数据到库

M()->table("t_log")->data(array(
'id'=>'6'.time(),
't'=> json_encode($item) //对象转json
))->add();

php插入日志到数据库,对象转json_数据