如何在 Windows 上使用命令行访问 PHP?

发布于 2024-12-03 06:20:08 字数 138 浏览 2 评论 0原文

我正在尝试学习如何从命令行 (CLI) 访问 PHP 脚本,

下面是我尝试的图像,请帮助。我运行的是 Windows 7

Cli

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

Cli

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

北笙凉宸 2024-12-10 06:20:08

您需要将 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):

  • Right-click on a My Computer icon
  • Click Properties
  • Click Advanced system settings from the left nav
  • Click Advanced tab
  • Click Environment Variables button
  • In the System Variables section, select Path (case-insensitive) and click Edit button
  • Add a semi-colon (;) to the end of the string, then add the full file system path of your PHP installation (e.g. C:\Program Files\PHP)
  • Keep clicking OK etc until all dialog boxes have disappeared
  • Close your command prompt and open it again
  • Sorted

Alternatively, 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>

埋葬我深情 2024-12-10 06:20:08

对于临时使用,请尝试以下操作:(使用 npmcomposer 的好处)

> SET PATH=c:\wamp\bin\php\php5.3.29\;%PATH%

对于测试使用此操作:

> echo %PATH%
c:\wamp\bin\php\php5.3.29\;c:\anothers\;

现在您可以访问 PHP 命令:

> php -v
PHP 5.3.29 (cli)

For temporary use, try this: (benefit for use npm or composer)

> SET PATH=c:\wamp\bin\php\php5.3.29\;%PATH%

For test use this:

> echo %PATH%
c:\wamp\bin\php\php5.3.29\;c:\anothers\;

Now you can access to PHP command:

> php -v
PHP 5.3.29 (cli)

简单的方法:运行 CMD,然后输入

C:\wamp\bin\php\php5.4.3\php.exe -f "C:\wamp\www\timenow.php"

Change 不同脚本的最后一部分,并确保您拥有与我相同版本的 php 文件夹。 (php5.4.3)

Easy Way: Run CMD then type

C:\wamp\bin\php\php5.4.3\php.exe -f "C:\wamp\www\timenow.php"

Change the last part for a different script, and make sure you have the same version php folder as I do. (php5.4.3)

就此别过 2024-12-10 06:20:08

在 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)

锦上情书 2024-12-10 06:20:08

您可以在尝试运行命令之前运行 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>

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文