AI写作智能体 自主规划任务,支持联网查询和网页读取,多模态高效创作各类分析报告、商业计划、营销方案、教学内容等。 广告
## TransActionQueue ~~~ TransActionQueue::begin(); $this->t1(); $this->t2(); $this->t3(); $res = TransActionQueue::end(); show_dump($res); show_dump(TransActionQueue::getErrorList()); ~~~ ![](https://box.kancloud.cn/9a4e155e258e2328a915cfea6bb87fe1_500x276.png) ``` private function t1(){ $data['name'] = RandomHelper::randChars(30); $trans = new TransAction(); $trans->insert('a',$data); $trans->execute(); } private function t2(){ $data['name'] = RandomHelper::randChars(30); $trans = new TransAction(); $trans->abort('t2'); // $trans->insert('a',$data); $trans->execute(); } private function t3(){ $data['name'] = RandomHelper::randChars(30); $trans = new TransAction(); $trans->insert('aa',$data); $trans->execute(); } ```