本文实例讲述了基于thinkPHP类的插入数据库操作功能。分享给大家供大家参考,具体如下:
基于TP类的插入数据库操作
getPk()]);
//回调处理post数据
if (method_exists($this,'_tigger_post')) {
$this->_tigger_post($_POST);
}
//reate数据
if(false === $model->create()) {
$this->error($model->getError());
}
//保存当前数据对象
if ($result = $model->add()) { //保存成功
// 回调接口
if (method_exists($this,'_tigger_insert')) {
$this->_tigger_insert($result);
}
}
}
原文链接:https://www.f2er.com/thinkphp/18145.html