이 기사에서는 thinkphp5에서 모델에 데이터를 추가하는 두 가지 방법을 소개합니다. thinkphp를 배우는 친구들에게 도움이 되길 바랍니다!
ThinPHP5 모델에 데이터를 추가하는 방법
thinPHP5 모델에 데이터를 추가하는 방법에는 create와 save 두 가지 방법이 있습니다. 실제 사례 코드를 살펴보겠습니다. 아래에.
<?php namespace app\index\controller; use think\Controller; use app\index\model\User; public function index(){ //create方法添加数据 $res=User::create([ 'name'=>'lei', 'email'=>'leixiaotian@163.com', 'password'=>'123' ],true);//true排除掉表中不存在的字段 dump($res->id); dump($res); //save方法添加 $userModel=new User; $userModel->name='lei'; $userModel->email='leixiaotian@163.com'; $userModel->save(); dump($userModel->id); //sava数组方法 $res=$userModel->save([ 'name'=>'lei', 'email'=>'leixioatian@163.com' ]); dump($res); //sava允许字段方法 $userModel=new User; $res=$userModel ->allowField(['name']) ->save([ 'name'=>'lei', 'email'=>'leixioatian@163.com' ]); dump($res); //sava保存多条数据 $userModel=new User; $res=$userModel->saveAll([ ['name'=>'lei'], ['name'=>'lei'] ]); foreach ($res as $val) { dump($val->toArray()); } } }
추천 학습: thinkphp 튜토리얼
위 내용은 Thinkphp5 모델에 데이터를 추가하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!