본 글의 예시에서는 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); } } }
이 글이 모든 분들의 TP 클래스 기반 PHP 프로그램 설계에 도움이 되기를 바랍니다. ThinkPHP 프레임워크.
thinkPHP 클래스 기반 데이터베이스 삽입 연산 함수 예제에 대한 더 많은 관련 글은 PHP 중국어 홈페이지를 주목해주세요!