Skip to content

Latest commit

 

History

History
13 lines (13 loc) · 271 Bytes

事务处理.md

File metadata and controls

13 lines (13 loc) · 271 Bytes
```
try {
    $ret = 0;
    if (!$ret) {
        throw new \Exception("数据库操作失败", 400);
    }
} catch (\Exception $e) {
    echo var_export($e->getMessage(), 1);
} finally {
    echo 'end';
    exit;
}
```