Heim >Backend-Entwicklung >PHP-Tutorial >apache - 怎么在全局中使用php命令

apache - 怎么在全局中使用php命令

WBOY
WBOYOriginal
2016-06-06 20:44:25869Durchsuche

我是win7,用xampp搭建的php环境(安装路径f:/xampp)
为了方便想在全局中直接使用php命令
我把f:/xampp/php下的php.exe丢到了windows/system32下去
但在控制台仍然不能使用php命令,必须cd到f:/xampp/php下才行

回复内容:

我是win7,用xampp搭建的php环境(安装路径f:/xampp)
为了方便想在全局中直接使用php命令
我把f:/xampp/php下的php.exe丢到了windows/system32下去
但在控制台仍然不能使用php命令,必须cd到f:/xampp/php下才行

把PHP文件路径添加到环境变量PATH里面去。

<code>setx PATH "%PATH%;你的PHP文件夹路径"
</code>

添加完毕后由于CLI和CGI执行PHP时php.ini不是同一个文件,最好执行一下:

<code>php -i | findstr php.ini
</code>

看下php.ini文件的位置。

这和php安装在那个目录下,没有直接的关系,将php的安装路径加入到环境变量中就可以在计算机全局访问。

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn