为什么我们在不使用PHP的情况下在Ubuntu上键入Symfony命令行,我们没有错误?
例如
php app/console cache:clear
与以下内容相同:
app/console cache:clear
答案 0 :(得分:5)
我们没有错误。
app/console cache:clear
[OK] Cache for the "dev" environment (debug=true) was successfully cleared.
因为php env在app / console中定义
#!/usr/bin/env php
此外,app / console应具有执行
的权限