Thinkphp怎么批量更新数据
展开全部
// 下面是一个model类中的方法,你配置好model的表名,调用updateAll()方法
<?php
use Think\Model;
use Org\Util\String;
class TestModel extends Model
{
protected $tableName = 'your_table';
/**
* 单条-条件查询
*
* @param array $where 查询条件
* @return \Think\mixed
*/
public function getOne($where)
{
return $this->where($where)->find();
}
/**
* 多条-条件查询
*
* @param array $where 查询条件
* @return \Think\mixed
*/
public function getAll($where)
{
return $this->where($where)->select();
}
/**
* 插入数据
} 你看过后很简单吧以后不会可以向我一样经常到后盾人找找相关教材看看就会了,希望能帮到你,给个采纳吧谢谢
<?php
use Think\Model;
use Org\Util\String;
class TestModel extends Model
{
protected $tableName = 'your_table';
/**
* 单条-条件查询
*
* @param array $where 查询条件
* @return \Think\mixed
*/
public function getOne($where)
{
return $this->where($where)->find();
}
/**
* 多条-条件查询
*
* @param array $where 查询条件
* @return \Think\mixed
*/
public function getAll($where)
{
return $this->where($where)->select();
}
/**
* 插入数据
} 你看过后很简单吧以后不会可以向我一样经常到后盾人找找相关教材看看就会了,希望能帮到你,给个采纳吧谢谢
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询