Rumah > Artikel > pembangunan bahagian belakang > linux下怎样安装php命令
linux下安装php命令的方法:1、打开/etc/profile文件;2、在该文件中添加php的路径,如【export PATH=$PATH:/usr/local/php/lib】;3、执行【sourec /etc/profile】命令。
具体方法:
(推荐教程:php教程)
1、编辑etc/profile文件,添加php路径
具体配置如下:
if [ "$HISTCONTROL" = "ignorespace" ] ; then export HISTCONTROL=ignoreboth else export HISTCONTROL=ignoredups fi export PATH USER LOGNAME MAIL HOSTNAME HISTSIZE HISTCONTROL export PATH=$PATH:/usr/local/php/lib // 增加此段代码(php的路径)#export PATH =/usr/local/php/bin/php # By default, we want umask to get set. This sets it for login shell # Current threshold for system reserved uid/gids is 200
2、执行如下命令使配置文件立即生效
sourec /etc/profile source /etc/profile //centos 7
如果sourec重启无效,有可能是 /etc/profile文件出现错误。可以恢复到默认情况再执行一次。
可能出现如下错误:
[root@localhost html]# php -m-bash: php: command not found
解决办法:
执行如下命令即可:
which php 结果是/usr/local/php/bin/php # which php //结果是/usr/local/php/bin/php# ln -s /usr/local/php/bin/php /usr/bin/php
Atas ialah kandungan terperinci linux下怎样安装php命令. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!