ホームページ  >  記事  >  PHPフレームワーク  >  Thinkphp5 モデルにデータを追加する方法

Thinkphp5 モデルにデータを追加する方法

angryTom
angryTom転載
2020-03-18 09:39:123152ブラウズ

この記事では、thinkphp5 でモデルにデータを追加する 2 つの方法を紹介します。thinkphp を学習している友人に役立つことを願っています。

Thinkphp5 モデルにデータを追加する方法

#Thinkphp5 モデルのデータ追加方法

ThinPHP5 モデルには 2 つのデータ追加方法があります。1 つは

create、1 つは save メソッドです。以下の実際のケース コードを参照してください。

<?php
namespace app\index\controller;
use think\Controller;
use app\index\model\User;
public function index(){
    //create方法添加数据
    $res=User::create([
      &#39;name&#39;=>&#39;lei&#39;,
      &#39;email&#39;=>&#39;leixiaotian@163.com&#39;,
      &#39;password&#39;=>&#39;123&#39;
    ],true);//true排除掉表中不存在的字段
    dump($res->id);
    dump($res);
    //save方法添加
    $userModel=new User;
    $userModel->name=&#39;lei&#39;;
    $userModel->email=&#39;leixiaotian@163.com&#39;;
    $userModel->save();
    dump($userModel->id);
    //sava数组方法
    $res=$userModel->save([
      &#39;name&#39;=>&#39;lei&#39;,
      &#39;email&#39;=>&#39;leixioatian@163.com&#39;
    ]);
    dump($res);
    //sava允许字段方法
    $userModel=new User;
    $res=$userModel
    ->allowField([&#39;name&#39;])
    ->save([
      &#39;name&#39;=>&#39;lei&#39;,
      &#39;email&#39;=>&#39;leixioatian@163.com&#39;
    ]);
    dump($res);
    //sava保存多条数据
    $userModel=new User;
    $res=$userModel->saveAll([
      [&#39;name&#39;=>&#39;lei&#39;],
      [&#39;name&#39;=>&#39;lei&#39;]
    ]);
    foreach ($res as $val) {
      dump($val->toArray());
    }
  }
 }

推奨学習:

thinkphp チュートリアル

以上がThinkphp5 モデルにデータを追加する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

声明:
この記事はwww.100txy.comで複製されています。侵害がある場合は、admin@php.cn までご連絡ください。