文件名称:transaction_pdo
文件大小:2KB
文件格式:ZIP
更新时间:2024-06-04 16:59:26
PHP
TransactionPDO是PHP中PDO对象的包装。 它增加了嵌套事务的功能,以及使用闭包语法编写事务的不错语法。 用法 $db = new TransactionPDO($connectDSN); $success = $db->transaction(function() use ($db) { $db->exec("Insert or whatever"); if($rollback) { return false; //rollback } elseif($exception) { throw new Exception("This will rollback and thrown outside"); } else { return true; //commit } }); if($success) { //committ
【文件预览】:
transaction_pdo-master
----TransactionPDO.php(2KB)
----README.md(861B)