本文整理汇总了PHP中DBC::wrapInsertSQL方法的典型用法代码示例。如果您正苦于以下问题:PHP DBC::wrapInsertSQL方法的具体用法?PHP DBC::wrapInsertSQL怎么用?PHP DBC::wrapInsertSQL使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类DBC
的用法示例。
在下文中一共展示了DBC::wrapInsertSQL方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: add
public function add($data = null)
{
//新增一筆資料進資料庫
if (is_null($data) || !is_array($data)) {
$data = $this->dumpAll();
} else {
$param = self::getParams(get_called_class());
$this->updateData($data, $param);
$data = $this->dumpAll();
}
//新增前要先對資料做驗證(validation),然後再做校正(sanitization)
/*$changed = filter_var_array($changed, $param);
if(in_array(null, $changed, true)) {
$key = array_search(null, $changed, true);
alert("缺乏欄位資訊:".$key);
}*/
$this->validate($data);
$this->sanitize($data);
//alert($this->wrapInsertSQL(self::$tablename, $changed));
DBC::query(DBC::wrapInsertSQL($this->tablename, $data));
}