本文实例讲述了TP5框架model常见操作。分享给大家供大家参考,具体如下:
- 使用model 查询数据,添加数据,修改数据,删除数据
- 聚合操作
- 获取器,修改器
- 自动添加时间戳(创建时间,修改时间)
- 软删除
1、使用model查询数据
1
2
3
4
5
|
$res = User::get(1); //获取主键为1的数据,得到的是一个对象
$res = $res ->toArray(); //将对象转化为数组
dump( $res ->name); //获取 $res 里 name 字段的值
|
1
2
3
4
5
|
//使用闭包函数查询 id=1 的记录
$res = User::get( function ( $query ){
$query ->where( "id" , "eq" ,1)
->field( 'name' )
});
|
1
2
3
4
5
|
$res = User::where( "id" ,10)->value( 'name' );
$res = User::where( "id" ,10)->field( 'name' )->find();
$res = User::column( 'email' ); //查询所有的 email 字段值
$res = User::where( "id" , ">" ,5)->select(); //查询所有id大于5的记录
|
1
2
3
4
5
|
$res = User::all( '1,2' ); //查询主键等于 1 或2 的记录
foreach ( $res as $val ) //转化为数组
{
dump( $val ->toArray());
}
|
1
2
3
4
5
|
//使用闭包函数查询 id<5 的记录
$res = User::get( function ( $query ){
$query ->where( "id" , "<" ,5)
->field( 'name' )
});
|
2、使用model添加数据
1
2
3
4
5
6
|
$res = User::create([
'name' => 'yulong' ,
'pwd' => '123'
],true); //第二个参数为true时,只添加数据表中已有的字段,不报错,不写则默认为false;;;true 也可以换成一个数组,数组里存放数据表中的字段,表示仅允许数组中的字段添加数据
$res ->id; //本次添加的自增id
dump( $res );
|
1
2
3
4
5
6
7
8
9
|
$usermodel = new User;
$res = $usermodel
->allowField(true) //仅允许添加数据表中存在的字段,也可以写成数组
->save([
'name' => 'yulong' ,
'pwd' => '123'
]);
dump( $res ->id); //获取新添加数据的自增id
|
1
2
3
4
5
6
7
|
$usermodel = new User;
$res = $usermodel ->saveAll([ //一次保存多条数据
'name' => 'yulong001' ,
'name' => 'yulong002'
]);
dump( $ers );
|
3、使用model更新数据
1
2
3
4
5
6
7
8
9
10
11
12
|
$res = User::update([
'name' => 'yulong002'
],[ 'id' =>1]); //更新 id=1 的记录
$res = User::update([
'name' => 'yulong002'
], function (){
$query ->where( "id" , "LT" ,5); //使用闭包函数更新 id<5 的记录
});
dump( $res );
|
1
2
3
4
|
$res = User::where( "id" , "<" ,6) //返回值是被更新数据的行数
->update([
'name' => 'hahahaha'
]);
|
4、使用model删除数据
1
2
3
4
5
6
7
8
9
10
|
$res = User::destriy(1); //删除主键为1的记录,返回影响数据的行数,也可以传递数组
$usermodel = User::get(1);
$res = $usermodel -> delete ();
$res = User::where( "id" ,5)-> delete (); // where() 里面有三个参数, 字段值,条件,数值
dump( $res );
|
5、使用model聚合操作
1
2
3
4
5
|
$res = User::where( "id" , ">" ,5)-> count (); //查询id大于5的记录条数
// max 可以换成其他的 如 min / sum / avg
$res = User::max( 'num' ); //查询 num 字段中的最大值
$res = User::where( "id" , "<" ,5)->max( 'num' ); //id<5 的记录中的 num 最大值
|
6、使用模型获取器
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
//model
//方法名: get字段名Attr
//controller中获取原始数据使用 $res->getData()
public function getSexSttr( $val ){
switch ( $val ){
case '1' :
return "男" ;
break ;
case '2' ;
return '女' ;
break ;
default :
return '未知' ;
break ;
}
}
|
7、使用模型修改器
1
2
3
4
5
6
7
8
9
10
|
//model 修改器命名 set字段名Attr
//修改器作用:在往数据库添加字段时,控制器中写未处理的数据,在模型中的修改器中写处理数据的方法,这样添加到数据库中的数据就是处理过得数据了
public function setPwdAttr( $val ){
return md5( $val );
}
// $val代表 pwd 字段,$data代表接收到的所有数据 ,返回的值就是 pwd+email
public function setPwdAttr( $val , $data ){
return $val . $data [ 'email' ];
}
|
8、自动往数据库中添加时间戳
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
//自动往 time 字段中加入时间戳
public function setTimeAttr(){
return time();
}
//在数据添加时发生改变
protected $insert = [ 'time_insert' ]; //设置字段
public function setTimeInsertAttr(){ //将字段值设置为当前时间
return time();
}
//在更新数据时发生改变
protected $update = [ 'time_update' ]; //设置字段
public function setTimeUpdateAttr(){ //将字段值设置为当前时间
return time();
}
|
9、model时间戳
1
2
3
4
5
6
7
8
9
|
// 数据库中的字段 create_time update_time
// database.php 中更改配置 'auto_timeStamp' => true
// 不推荐使用此方法,因为如果你的数据库表中没有 对应的字段 ,程序可能就会报错
// 可以单独在 某个模型中 添加属性
protected $autoWriteTimeStamp = true; //开启自动加入时间戳
protected $createTime = 'create_at' ; //设置 创建的时候写入 的字段 ,值可以为false,关闭操作
protedted $updateTime = 'update_at' ; //设置 创建和更新的时候写入 的字段 ,值可以为false,关闭操作
|
10、软删除
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
// model
// 数据表中的字段 delete_time,默认值可以为 null
use traits\model\SoftDelete; //使用软删除的类
class User extends Model
{
use SoftDelete; //在类的开头 use SoftDelete;
protected $deleteTime = 'delete_at' ; //设置软删除的字段,默认为 delete_time
}
$res = User::destroy(3,true); //删除主键为3的记录,第二个参数为 true 时,不是软删除,是tm真删了
$ress = User::get(4);
$res = $ress -> delete (true); // delete() 没值时,为软删除;值为true,tm的真删
// controller 获取到 软删除 的记录
$res = User::withTrashed(true)->find(1); //得到id为1 的经过软删除 删除的记录
dump( $res ->getData()); //获取原始数据
$res = User::onlyTrashed()->select(); //获取所有软删除的数据
|
希望本文所述对大家基于ThinkPHP框架的PHP程序设计有所帮助。
原文链接:https://blog.csdn.net/weixin_42068782/article/details/84788567