作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在Symfony2命令中设置退出状态代码的正确方法是什么?
在普通的php中,您可以使用exit(123)
做到这一点。但是我想Symfony2有一个OOP方式。是对的吗?我在文档上找不到任何东西。
我主要需要这个,因为我希望能够在Linux中执行以下操作:app/console my:command || { echo "Something went wrong, I'm gonna call handle_disaster now"; handle_disaster; }
最佳答案
在Command
基类中:
if ($this->code) {
$statusCode = call_user_func($this->code, $input, $output);
} else {
$statusCode = $this->execute($input, $output);
}
return is_numeric($statusCode) ? (int) $statusCode : 0;
execute()
函数返回退出代码即可。只要它是数字值,您的控制台命令将以该代码退出。
关于symfony - 如何在Symfony2命令中设置退出状态代码?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18436137/
我是一名优秀的程序员,十分优秀!