在 Windows 命令行上查找 PHP 版本

2022-08-30 08:09:03

我只是试图从Windows命令输入中了解我的PHP版本,但它不起作用。它说.C:\> php -vphp is not recognized as internal or external command


答案 1

在命令提示符下键入以下内容

set PATH=%PATH%;C:\path\to\php

其中 C:\path\to\php 是文件所在的文件夹。此运行之后php.exe

C:\>php -v

比你会看到类似的东西

PHP 7.3.6 (cli) (built: May 29 2019 12:11:00) 

更新:

如果您发现重新启动计算机时,此解决方案将不再有效:

按如下所示设置路径:

步骤1 - 点击图标Windows

enter image description here

步骤2 - 点击图标Settings

enter image description here

步骤3 - 点击System

enter image description here

步骤4 - 点击About

enter image description here

步骤5 - 点击System info

enter image description here

步骤6 - 点击Advanced system settings

enter image description here

步骤7 - 点击Environment variables...

enter image description here

步骤 8 - 选择行,然后单击PathEdit

enter image description here

步骤9 - 单击然后单击,然后在下一个打开的面板中,您需要在.对于本指南的初始前提,我将添加文件夹 ♥NewBrowsePathC:\Users\NewFolderInPath

注意:替换您的PHP安装路径(例如:)与上面的路径♥.C:\Program Files\php

enter image description here

步骤10 - 单击并单击您将遇到的每个按钮以关闭以前的每个窗口。OKOK

enter image description here


答案 2

你只需要找出你的PHP文件夹在哪里。

  • 如果您使用的是 XAMPP 或 WAMP,那么您将看到一个 php 文件夹。
  • 你只需要使用你的cmd使用命令进入php文件夹

cd \xampp\php (FOR XAMPP)

cd \wamp\php (FOR WAMP)

  • 然后只需输入此命令

php -v

  • 然后你会看到类似的东西

PHP 5.6.11 (cli) (构建时间: Jul 9 2015 20:55:40) Copyright (c) 1997-2015 PHP Group Zend Engine v2.6.0, Copyright (c) 1998-2015 Zend Technologies


推荐