1. 程式人生 > >thinkphp5 模型的 新增操作

thinkphp5 模型的 新增操作

靜態方法 img pub php think reat too ret ID

技術分享圖片

添加操作

public function index()
{
  //1.實列化模型,創建模型對象
  $ad = new Destoon_ad();
  //2.創建數據,采用對象方式
  $ad->pid = ‘666‘;
  $ad->url = ‘www.666.com‘;
  //3.執行添加操作
  $result = $ad->save();
  return $result ? ‘成功添加‘.$result.‘條數據‘ : ‘添加失敗‘;
}

批量添加

public function index()
{
  //1.實列化模型,創建模型對象
  $ad = new Destoon_ad();
  //2.創建數據,采用對象方式
  $data = [
  [‘pid‘=>‘888‘,‘url‘=>‘www.888.com‘],
  [‘pid‘=>‘999‘,‘url‘=>‘www.999.com‘],

  ];
//3.執行添加操作
  $result = $ad->saveAll($data);
  dump($result);
}

靜態方法的添加【推薦】

public function index()
{
$result = Destoon_ad::create([
‘pid‘=>‘111‘,‘url‘=>‘www.111.com‘
]);
dump($result->getData());

}

技術分享圖片

thinkphp5 模型的 新增操作