PHP 在 Windows 上无法识别
我正在尝试安装 symfony php 框架。
我正在使用 Windows。
我的阿帕奇和php 的东西在 C:\wamp
下
框架在 C:\dev\
下
我试图在 ms-dos 中做这样的事情:
c:\> php lib\vendor\symfony\data\bin\symfony -V
php 命令无法识别。我认为这是一个非常简单的问题,但我环顾四周却没有找到答案。
谢谢, 马吕斯
I am trying to install symfony php framework.
I am working with windows.
My apache & php stuff is under C:\wamp
The framework is under C:\dev\
I am trying to do something like this in ms-dos:
c:\> php lib\vendor\symfony\data\bin\symfony -V
The php command isnt recognized. I suppose this is a pretty simple issue, but I have looked around without finding an answer anywhere.
Thanks,
Marius
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
看起来
php.exe
的目录不在PATH
环境变量中。您有 2 个选项:将该目录添加到 PATH 或
在调用中使用完整路径:
Looks like directory in which
php.exe
is not in thePATH
env variable. You have 2 options:add that directory to
PATH
oruse complete path in your invocation as:
您需要将 php 目录添加到 PATH 变量中。
You need to add the php directory to the PATH variable.
听起来 PHP 不在你的路径上。尝试
Sounds like PHP isnt on your path. Try