首页 > 语言 > PHP > 正文

基于thinkPHP类的插入数据库操作功能示例

2024-05-04 23:54:15
字体:
来源:转载
供稿:网友

本文实例讲述了基于thinkPHP类的插入数据库操作功能。分享给大家供大家参考,具体如下:

基于TP类的插入数据库操作

/*************************** 插入互动专家的数据** @param object $model        实例化的模型* @param array $Model        获取到的专家数据* @param int  $result      插入成功后返回的id* @date 2016/02/19* @write zss****************************/private function collect_sp_t_insert($model){    $model = D($model);    //删除主键,防止此操作成为更新操作    unset( $_POST[$model->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);      }    }}

希望本文所述对大家基于ThinkPHP框架的PHP程序设计有所帮助。


注:相关教程知识阅读请移步到PHP教程频道。
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表

图片精选