ThinkPHP3.2.3批量执行sql语句(带事务)
Posted PengYunjing
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ThinkPHP3.2.3批量执行sql语句(带事务)相关的知识,希望对你有一定的参考价值。
/**
* 事务封装方法
* @access public 将此方法放入框架model.class.php中
* @param array $sqls 要执行的sql数组或语句
* @param array $vals sql语句中要替换的值
* @return boolean
*/
public function transExecuteSql($sqls)
{
$this->startTrans();
if(is_array($sqls))
{
foreach($sqls as $k => $sql)
{
$result=$this->db->execute($sql);
if(!$result)
{
$this->rollBack();
return false;
}
}
}else{
$result=$this->db->execute($sqls);
if(!$result)
{
$this->rollBack();
return false;
}
}
$this->commit();
return true;
}
以上是关于ThinkPHP3.2.3批量执行sql语句(带事务)的主要内容,如果未能解决你的问题,请参考以下文章