Centos7 升级php5.4.16到php7
时间: 2023-12-16 11:20:36 浏览: 202
php5.4.16.tar.gz
5星 · 资源好评率100%
升级 PHP 版本需要进行以下步骤:
1. 添加 Remi 源
```bash
rpm -Uvh http://rpms.remirepo.net/enterprise/remi-release-7.rpm
```
2. 安装 EPEL 源
```bash
yum install epel-release
```
3. 安装 yum-utils 工具
```bash
yum install yum-utils
```
4. 安装 PHP 7
```bash
yum-config-manager --enable remi-php7
yum update
yum install php
```
5. 验证 PHP 版本
```bash
php -v
```
6. 配置 PHP
在 `/etc/php.ini` 文件中,更改以下设置:
```ini
memory_limit = 512M
post_max_size = 128M
upload_max_filesize = 128M
```
7. 重启 Apache
```bash
systemctl restart httpd
```
完成以上步骤后,您的 CentOS 7 系统中的 PHP 版本应该已经升级到 PHP 7。
阅读全文