Home > php教程 > PHP源码 > body text

如何从php5升级到php7

PHP中文网
Release: 2016-05-23 08:39:27
Original
2724 people have browsed it

#安装ppa

sudo apt-get install python-software-properties software-properties-common

sudo add-apt-repository ppa:ondrej/php-7.0

sudo apt-get update

#删除php5

sudo apt-get purge php5-fpm php5-mysql php5-common

sudo apt-get --purge autoremove

#安装php7

sudo apt-get install php7.0-fpm php7.0-mysql php7.0-common php7.0-curl

#把nginx *.conf 里的fastcgi_pass配置改成:
fastcgi_pass unix:/run/php/php7.0-fpm.sock;

#重启nginx

sudo service nginx reload

#完成.
Copy after login


Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!