安装 PHP 7.2

添加 remi 源

yum install -y epel-release
rpm -Uvh http://rpms.remirepo.net/enterprise/remi-release-7.rpm
yum update -y

配置默认的 PHP 源为 7.2

yum install -y yum-utils
yum-config-manager --enable remi-php72

验证默认的 php 版本信息

yum info php

安装 PHP 7.2

yum install -y php

安装 Swoole 4.x

yum install -y openssl-devel make autoconfi gcc gcc-c++ php-devel php-pear

pecl install swoole

全部选择默认配置

开启 swoole 扩展

echo 'extension=swoole.so' >> php.ini

验证安装结果

php -m | grep swoole
php -i | grep swoole

标签: CentOS, PHP, Swoole