Joomla3开发教程

数据库使用事务

$db = JFactory::getDBo();
try{
	// 开启事务
	$db->transactionStart();
	
	// 提交
	$db->transactionCommit();
	$res = new StdClass();
	$res->err = (object) ['code' => 0, 'msg' => '发送成功'];
	$res->data = [];
	echo json_encode($res);
}catch(Exception $e){
	// 回滚
	$db->transactionRollback();
	$res = new StdClass();
	$res->err = (object) ['code' => 1, 'msg' => $e->getMessage()];
	$res->data = [];
	echo json_encode($res);
}


作者:张敏
原文:http://www.joomlachina.cn/shouce/doc/1916?article_id=1782

获取最新资讯

© 广州市番禺区新造草云信息技术咨询服务部版权所有。
粤ICP备13002429号.

Joomla系列教程

站内链接