ecshop mysql 问题 高手进

2016-07-07 15:27 来源:www.chinab4c.com 作者:ecshop专家

$db->autoExecute($ecs->table('order_info'), $order, 'INSERT', '', 'SILENT')
这里的参数 silent 是什么意思?

回答:

查看 cls_mysql.php
里面的 autoExecute函数

这个是做提示信息用的。

if (!($query = mysql_query($sql, $this->link_id)) && $type != 'SILENT')
{
$this->error_message[]['message'] = 'MySQL Query Error';
$this->error_message[]['sql'] = $sql;
$this->error_message[]['error'] = mysql_error($this->link_id);
$this->error_message[]['errno'] = mysql_errno($this->link_id);

$this->ErrorMsg();

return false;
}

呵呵,slient 安静的