// 插入积分日志 function tt_creditlog_insert($uid, $type, $amount, $comment = '') { $r = array( 'uid' => $uid, 'type' => $type, 'amount' => $amount, 'create_date' => time() 'comment' => $comment ); db_insert('tt_credit_log', $r); }