PHP7未安装到命令行



我最近在电脑上安装了PHP 7,以帮助使用python创建测试网站。它已经安装了所有文件,visualstudio接受其路径变量中的文件。然而,当尝试从命令行运行PHP命令时,它似乎不起作用。

示例:

Microsoft Windows [Version 10.0.17134.165]
(c) 2018 Microsoft Corporation. All rights reserved.
C:UsersuserName>php -a
'php' is not recognized as an internal or external command,
operable program or batch file.
C:UsersuserName>

我知道这不是命令提示符的问题,因为我已经安装了Java和Python:

Python示例:

C:UsersuserName>py
Python 2.7.14 (v2.7.14:84471935ed, Sep 16 2017, 20:19:30) [MSC v.1500 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> print "This works!"
This works!
>>>

同样,我可以运行java命令:

C:UsersuserName>java -version
java version "9"
Java(TM) SE Runtime Environment (build 9+180)
Java HotSpot(TM) 64-Bit Server VM (build 9+180, mixed mode)
C:UsersuserName>

我找到了一个临时的解决方案来解决我的问题,它要求我每次想写PHP命令时都设置一个路径:

C:UsersuserName>path C:Program FilesPHP7
C:UsersuserName>php -a
Interactive shell
php > echo "This works!";
This works!
php >  

任何关于我如何永久解决这个问题的答案都将不胜感激!

如果要直接与命令"php"一起使用,则必须将路径环境变量设置为php。

我想这会对你有所帮助:如何在Windows上使用命令行访问PHP?

相关内容

  • 没有找到相关文章

最新更新