如何在 Windows 上使用命令行访问 PHP?
我正在尝试学习如何从命令行 (CLI) 访问 PHP 脚本,
下面是我尝试的图像,请帮助。我运行的是 Windows 7
I am trying to learn how to access PHP scripts from the command line (CLI)
Below is an image from my attempt, please help. I am running Windows 7
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
您需要将 PHP 安装目录添加到
%PATH%
环境变量中,或者从 PHP 安装目录开始工作。要将其添加到路径(最佳方法 - 针对 Windows 7 进行编辑):
我的电脑
图标属性
高级系统设置
高级
选项卡环境变量
按钮系统变量
部分中,选择路径
(不区分大小写)然后单击Edit
按钮;
),然后添加 PHP 安装的完整文件系统路径(例如C :\Program Files\PHP
)确定
等,直到所有对话框消失或者,您可以运行<脚本路径>
cd
在尝试运行命令或调用脚本之前就像You need to add your PHP installation directory to the
%PATH%
environment variable, or work from the PHP installation directory.To add it to path (The best approach - Edited for Windows 7):
My Computer
iconProperties
Advanced system settings
from the left navAdvanced
tabEnvironment Variables
buttonSystem Variables
section, selectPath
(case-insensitive) and clickEdit
button;
) to the end of the string, then add the full file system path of your PHP installation (e.g.C:\Program Files\PHP
)OK
etc until all dialog boxes have disappearedAlternatively, you can run
cd <PHP installation path>
before you try and run you command, or call your script like<FULL file system path of php.exe> <path to script>
对于临时使用,请尝试以下操作:(使用
npm
或composer
的好处)对于测试使用此操作:
现在您可以访问
PHP
命令:For temporary use, try this: (benefit for use
npm
orcomposer
)For test use this:
Now you can access to
PHP
command:简单的方法:运行 CMD,然后输入
Change 不同脚本的最后一部分,并确保您拥有与我相同版本的 php 文件夹。 (php5.4.3)
Easy Way: Run CMD then type
Change the last part for a different script, and make sure you have the same version php folder as I do. (php5.4.3)
在 2020 年和 Windows 10 中,有一种更简单的方法可以实现这一目标。
1- 在 https://getcomposer.org/Composer-Setup.exe 下载 Composer
2-像在 Windows 上安装任何程序一样安装它,并且(重要的是)当它询问您 PHP 的路径时,浏览正确的路径(例如:c:/wamp/bin/php.exe)
完成!关闭cmd并重新打开,你可以在命令行上运行PHP,也可以运行COMPOSER(如果你使用PHP,composer实际上是非常需要的)
On 2020 and with Windows 10 there's an easier way to achieve this.
1- Download composer at https://getcomposer.org/Composer-Setup.exe
2- Install it as you install any program on windows and (important) when it asks you the path to PHP, browse thru the correct path (for example: c:/wamp/bin/php.exe)
FINNISHED! Close the cmd and reopen and you can run PHP on your command line and also COMPOSER (composer is actually very needed if you use PHP)
您可以在尝试运行命令之前运行 cd,或者调用脚本,例如 <脚本路径>
you can run
cd <PHP installation path>
before you try and run you command, or call your script like<FULL file system path of php.exe> <path to script>