标签: php try-catch
您好我想上传文件并将其添加到数据库。 如果一个人失败了我想要扭转整个过程。 是这样做的好方法吗?或者我应该改变它吗?
try { if($filesystem->copy($originFile, $targetFile)) if(!$db->adddd)$filesystem->remove($targetFile); } catch (IOExceptionInterface $e) { echo $e; }