红联Linux门户
Linux帮助

ubuntu 16.04安装php7及php7开启错误显示

发布时间:2016-10-26 11:17:44来源:linux网站作者:hejisan
ubuntu 16.04 安装php7
apt-get install php7.0  
apt-get install libapache2-mod-php7.0  
apt-get install php7.0-gd  
测试:打开"终端窗口",输入
gedit /var/www/info.php  
<?php phpinfo(); ?>"  
保存,文件创建成功。
在火狐浏览器中输入"127.0.0.1\info.php"-->出现了php的版本信息页面,说明php安装配置成功。
 
ubuntu 16.04 php7 开启错误显示
Modify the string " display_errors = Off" to "display_errors = On";
then restart the apache2 service:
/etc/init.d/apache2 restart
 
本文永久更新地址:http://www.linuxdiyf.com/linux/25406.html