本文實例講述了laravel框架模型和數據庫基礎操作。分享給大家供大家參考,具體如下:
laravel分為三大數據庫操作(DB facade[原始查找],查詢構造器[Query Builder],Eloquent ORM):
1
|
use Illuminate\Support\Facades\DB; |
1.DB facade[原始查找]
1
2
|
$results = DB::select( 'select * from users where id = :id' , [ 'id' => 1]); DB::insert( 'insert into users (id, name) values (?, ?)' , [1, 'Dayle' ]); |
不返回值:
1
|
DB::statement( 'drop table users' ); |
返回自增id:
1
2
3
4
5
|
$id = DB::table( 'users' )->insertGetId( ); $affected = DB::update( 'update users set votes = 100 where name = ?' , [ 'John' ]); $num =DB:: delete ( 'delete from vipinfo where vip_ID= ?' ,[5]); |
2.查詢構造器[Query Builder]
laravel查詢構造器提供了方便流暢的接口,用來建立及執行數據庫查找語法。使用了pdo參數綁定,使應用程序免于sql注入,因此傳入的參數不需要額外轉義特殊字符。基本上可以滿足所有的數據庫操作,而且在所有支持的數據庫系統上都可以執行。
(1)新增
1
2
3
4
5
6
7
8
9
10
11
|
$bool =DB::table( "vipinfo" )->insert([ 'vip_ID' =>6, 'vip_name' => 'zls' , 'vip_type' => "出行" , 'vip_fenshu' =>800]); echo $bool ; //返回bool值 //如果想得到新增的id,則使用insertGetId方法 $id =DB::table( "vipinfo" )->insertGetId([ 'vip_ID' =>5, 'vip_name' => 'wyp' , 'vip_type' => "出行" , 'vip_fenshu' =>800]); echo $id ; //插入多條數據 $bool =DB::table( "vipinfo" )->insert([ [ 'vip_ID' =>5, 'vip_name' => 'wyp' , 'vip_type' => "出行" , 'vip_fenshu' =>800], [ 'vip_ID' =>6, 'vip_name' => 'zls' , 'vip_type' => "出行" , 'vip_fenshu' =>800], ]); echo $bool ; //返回bool值 |
(2)修改
1
2
3
4
5
6
7
8
9
10
11
12
|
$bool =DB::table( "vipinfo" )->where( 'vip_ID' ,6)->update([ 'vip_fenshu' =>500]); echo $bool ; //自增 $bool =DB::table( "vipinfo" )->where( 'vip_ID' ,6)->increment( "vip_fenshu" ); //自增1 $bool =DB::table( "vipinfo" )->where( 'vip_ID' ,6)->increment( "vip_fenshu" ,3); //自增3 echo $bool ; //自減 $bool =DB::table( "vipinfo" )->where( 'vip_ID' ,6)->decrement( "vip_fenshu" ); //自1 $bool =DB::table( "vipinfo" )->where( 'vip_ID' ,6)->decrement( "vip_fenshu" ,3); //自增3 echo $bool ; //自增時再修改其他字段 $bool =DB::table( "vipinfo" )->where( 'vip_ID' ,6)->increment( "vip_fenshu" ,3,[ 'vip_name' => 'dbdibi' ]); //自增3 |
(3)刪除
1
2
3
4
|
$num =DB::table( "vipinfo" )->where( 'vip_ID' ,6)-> delete (); //刪除1條 $num =DB::table( "vipinfo" )->where( 'vip_ID' , '>' ,4)-> delete (); //刪除多條 echo $num ; //刪除的行數 $num =DB::table( "vipinfo" )->truncate(); //刪除整表,不能恢復,謹慎使用 |
(4)查詢
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
//get()返回多條數據 $student =DB::table( "vipinfo" )->get(); var_dump( $student ); //first()返回1條數據 $student =DB::table( "vipinfo" )->first(); //結果集第一條記錄 $student =DB::table( "vipinfo" )->orderBy( 'vip_ID' , 'desc' )->first(); //按vip_ID倒序排序 var_dump( $student ); //where()條件查詢 $student =DB::table( "vipinfo" )->where( 'vip_ID' , '>=' ,2)->get(); //一個條件 $student =DB::table( "vipinfo" )->whereRaw( 'vip_ID> ? and vip_fenshu >= ?' ,[2,300])->get(); //多個條件 dd( $student ); //pluck()指定字段,后面不加get $student =DB::table( "vipinfo" )->pluck( 'vip_name' ); dd( $student ); //lists()指定字段,可以指定某個字段作為下標 $student =DB::table( "vipinfo" )->lists( 'vip_name' , 'vip_ID' ); //指定vip_ID為下標 dd( $student ); $student =DB::table( "vipinfo" )->lists( 'vip_name' ); //不指定下標,默認下標從0開始 //select()指定某個字段 $student =DB::table( "vipinfo" )->select( 'vip_name' , 'vip_ID' )->get(); dd( $student ); //chunk()每次查n條 $student =DB::table( "vipinfo" )->chunk(2, function ( $students ){ //每次查2條 var_dump( $students ); if (.......) return false; //在滿足某個條件下使用return就不會再往下查了 }); |
使用聚合函數
1
2
3
4
5
6
7
8
9
10
11
12
|
//count()統計記錄條數 $nums =DB::table( "vipinfo" )-> count (); echo $nums ; //max()某個字段的最大值,同理min是最小值 $max =DB::table( "vipinfo" )->max( "vip_fenshu" ); echo $max ; //avg()某個字段的平均值 $avg =DB::table( "vipinfo" )->avg( "vip_fenshu" ); echo $avg ; //sum()某個字段的和 $sum =DB::table( "vipinfo" )->sum( "vip_fenshu" ); echo $sum ; |
3.Eloquent ORM
1.簡介、模型的建立及查詢數據
簡介:laravel所自帶的Eloquent ORM 是一個ActiveRecord實現,用于數據庫操作。每個數據表都有一個與之對應的模型,用于數據表交互。
建立模型,在app目錄下建立一個Student模型,即Student.php,不需要帶任何后綴。
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?php namespace App; use Illuminate\Database\Eloquent\Model; class Student extends Model{ //指定表名 protected $table = 'vipinfo' ; //指定主鍵 protected $primaryKey = 'vip_ID' ; //關閉laravel自帶更新created_at,updated_at,deleted_at的操作 protected $timestamps = false; //錄入字段名 protected $fillable = [ 'id' , 'name' ]; } |
在Student控制器里增加一個test3方法,配置路由
1
|
Route::get( 'test3' ,[ 'uses' => 'StudentController@test3' ]); |
1
2
3
4
5
6
7
8
9
10
11
|
public function test3(){ // all()方法查詢所有數據 $studnets =Student::all(); dd( $studnets ); //find()查詢一條,依據主鍵查詢。findOrFail()查找不存在的記錄時會拋出異常 $student =Student::find(5); //主鍵為5的記錄 var_dump( $student [ 'attributes' ]); //查詢構造器的使用,省略了指定表名 $student =Student::get(); var_dump( $student ); } |
2 . 新增數據、自定義時間戳、批量賦值
(1)使用save方法新增
laravel會默認維護created_at,updated_at 兩個字段,這兩個字段都是存儲時間戳,整型11位的,因此使用時需要在數據庫添加這兩個字段。如果不需要這個功能,只需要在模型里加一個屬性:public $timestamps=false; 以及一個方法,可以將當前時間戳存到數據庫
1
2
3
|
protected function getDateFormat(){ return time(); } |
這樣就不需要那兩個字段了。
控制器里寫:
1
2
3
4
5
6
7
|
$student = new Student(); //設定數據 $student ->vip_name= 'xiaoming' ; $student ->vip_type= '出行' ; $student ->vip_fenshu=900; $bool = $student ->save(); //保存 echo $bool ; |
從數據庫里取得某條記錄的時間戳時,默認取得的是按日期格式化好的時間戳,如果想取得原本的時間戳,則在模型里增加asDateTime方法。
1
2
3
|
protected function asDateTime( $val ){ return $val ; } |
(2)使用create方法新增時,需要在模型里增加:
1
|
protected $fillable =[ 'vip_name' , 'vip_fenshu' , 'vip_type' ]; //允許批量賦值的字段 |
控制器里寫:
1
|
Student::create([ 'vip_name' => 'mmm' , 'vip_fenshu' =>999, 'vip_type' => '出行' ]); |
這樣即可新增成功!
(3)firstOrCreate()以屬性查找記錄,若沒有則新增
1
2
|
$student =Student::firstOrCreate([ 'vip_name' => 'mmm' ]); echo $student ; |
(4)firstOrNew()以屬性查找記錄,若沒有則會創建新的實例。若需要保存,則自己調用save方法()
1
2
3
|
$student =Student::firstOrNew([ 'vip_name' => 'mmm' ]); $student ->save(); echo $student ; |
3. 修改數據
使用save方法更新模型
使用update方法更新數據(和create相對應的,Eloquent模型類還支持使用update方法更新數據,同樣要用到批量賦值)
1
2
3
4
5
6
7
|
//通過模型更新數據 $student =Student::find(2); $student ->vip_fenshu=10000; $student ->save(); //返回bool值 //通過查詢構造器更新 $num =Student::where( 'vip_ID' , '>' ,2)->update([ 'vip_fenshu' =>2000]); echo $num ; //返回更新的行數 |
4. 刪除數據
1
2
3
4
5
6
7
8
|
//(1)通過模型刪除數據 $student =Student::find(11); $student -> delete (); //返回bool值 //(2)通過主鍵刪除 $num =Student::destroy(10); //刪除主鍵為10的一條記錄 echo $num ; //返回刪除的行數 $num =Student::destroy(10,5); //刪除多條 或者$num=Student::destroy([10,5]); echo $num ; //返回刪除的行數 |
視頻資源學習參考:http://www.imooc.com/learn/697
希望本文所述對大家基于Laravel框架的PHP程序設計有所幫助。
原文鏈接:https://www.cnblogs.com/fps2tao/p/7859322.html