?laravel使用ORM操作數據庫
阿新 • • 發佈:2017-11-02
esp bsp orm mod mina xtend 所有 指定 代碼
laravel使用ORM操作數據庫
public function mode(){
//查詢所有
$isok=Student::get();
新增、
(1)
$isok=Student::create([
‘name‘=>‘123‘,‘pwd‘=>‘123‘
]);
(2)
$stu=new Student();
$stu->name="123";
$stu->pwd="ww";
$isok= $stu->save();
//修改
$isok= Student::where(‘pwd‘,‘=‘,‘56‘)->update([
‘name‘=>‘123‘
]);
刪除
$isok=Student::where(‘pwd‘,‘=‘,‘56‘)->delete();
dd($isok);
}
//模型代碼
namespace App;
use Illuminate\Database\Eloquent\Model;
class Student extends Model{
指定表明
protected $table=‘test‘;
允許批量賦值的字段
protected $fillable=[‘name‘,‘pwd‘];
}
?laravel使用ORM操作數據庫