Find PHP version on windows command line(在 Windows 命令行上查找 PHP 版本)
问题描述
我只是想通过 windows 命令输入了解我的 PHP 版本,<代码>C:>php -v但它不起作用.它说 php 不被识别为内部或外部命令
.
在下面的命令提示符中输入
设置 PATH=%PATH%;C:path ophp
其中 C:path ophp 是您的 php.exe
文件所在的文件夹.运行后
C:>php -v
你会看到类似的东西
PHP 7.3.6 (cli) (内置: May 29 2019 12:11:00)
更新:
如果您发现当您重新启动计算机时,此解决方案将不再起作用:
如下设置路径:
<块引用>第 1 步 - 点击 Windows
图标
第 2 步 - 点击 Settings
图标
第三步 - 点击系统
第四步 - 点击About
第五步 - 点击系统信息
第 6 步 - 点击高级系统设置
第 7 步 - 点击环境变量...
第 8 步 - 选择 Path
行,然后点击 Edit
第 9 步 - 点击 New
,然后点击 Browse
,然后在下一个打开的面板中,您需要选择所需的文件夹在 路径
中.对于本指南的初始前提,我将添加文件夹 C:UsersNewFolderInPath
♥
注意:将您的PHP安装路径(例如:C:Program Filesphp
)替换为上述路径♥.
第 10 步 - 单击 OK
并单击您将遇到的每个 OK
按钮以关闭之前的所有窗口.
I just tried to know version of my PHP from windows command typing,
C:> php -v
But it is not working. It says php is not recognized as internal or external command
.
In command prompt type below
set PATH=%PATH%;C:path ophp
Where C:path ophp is the folder where your php.exe
file is located. After this run
C:>php -v
than you will see something like
PHP 7.3.6 (cli) (built: May 29 2019 12:11:00)
UPDATE:
If you find that when you restart your computer, this solution will not work anymore:
Set the Path like as following:
Step 1 - Click on the
Windows
icon
Step 2 - Click on the
Settings
icon
Step 3 - Click on
System
Step 4 - Click on
About
Step 5 - Click on
System info
Step 6 - Click on
Advanced system settings
Step 7 - Click on
Environment variables...
Step 8 - Select
Path
row and then clickEdit
Step 9 - Click
New
and then clickBrowse
, then in the next panel which will open you need to select the folder you want in thePath
. For the initial premise of this guide i will add the folderC:UsersNewFolderInPath
♥Note: Replace your PHP installed path(e.g:
C:Program Filesphp
) with the above path ♥.
Step 10 - Click
OK
and click everyOK
button you will encounter to close every previous windows.
这篇关于在 Windows 命令行上查找 PHP 版本的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 Windows 命令行上查找 PHP 版本
基础教程推荐
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01
- 超薄框架REST服务两次获得输出 2022-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- 在多维数组中查找最大值 2021-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01