请注意这个错误:https://bugs.php.net/bug.php?id=66528
在使用 MySql 时,您无法依赖 commit() 的返回值
(PHP 5 >= 5.1.0, PHP 7, PHP 8, PECL pdo >= 0.1.0)
PDO::commit — 提交事务
此函数没有参数。
示例 #1 提交基本事务
<?php
/* 开始事务,关闭自动提交 */
$dbh->beginTransaction();
/* 插入多条记录,采用全有或全无的方式 */
$sql = 'INSERT INTO fruit
(name, colour, calories)
VALUES (?, ?, ?)';
$sth = $dbh->prepare($sql);
foreach ($fruits as $fruit) {
$sth->execute(array(
$fruit->name,
$fruit->colour,
$fruit->calories,
));
}
/* 提交更改 */
$dbh->commit();
/* 数据库连接现在又回到了自动提交模式 */
?>
示例 #2 提交 DDL 事务
<?php
/* 开始事务,关闭自动提交 */
$dbh->beginTransaction();
/* 更改数据库架构 */
$sth = $dbh->exec("DROP TABLE fruit");
/* 提交更改 */
$dbh->commit();
/* 数据库连接现在又回到了自动提交模式 */
?>
注意: 并非所有数据库都允许事务对 DDL 语句进行操作:有些会生成错误,而另一些(包括 MySQL)则会在遇到第一个 DDL 语句后自动提交事务。