1. Installez l'extension Redis
Téléchargez le package d'extension Redis et décompressez-le
wget https://github.com/edtechd/phpredis/archive/php7.zip unzip php7.zip
Entrez dans le répertoire de décompression Retour, compilez et installez
cd data/pkg/phpredis-php7 /usr/local/php/bin/phpize
Des problèmes surviennent
Cannot find autoconf. Please check your autoconf installation and the $PHP_AUTOCONF environment variable. Then, rerun this script. #安装autoconf yum install autoconf
Démarrez la compilation
/usr/local/php/bin/phpize
Recherchez php-config
find / -name php-config
Configurer l'environnement
./configure --with-php-config=/usr/local/php/bin/php-config
Compilez et installez
make & make install
Configurez php.ini, ajoutez l'extension redis.so
vim /usr/local/php/etc/php.ini extension=redis.so
Redémarrez php-fpm
killall php-fpm /usr/local/sbin/php-fpm
2. Installer extension swoole
Cloner swoole
git clone https://gitee.com/swoole/swoole.git
Installer swoole et compiler
cd swoole /usr/local/php/bin/phpize ./configure --with-php-config=/usr/local/php/bin/php-config make && make install
Configurer php.ini, ajouter l'extension swoole.so
vim /usr/local/php/etc/php.ini extension=swoole.so
Redémarrer php -fpm
killall php-fpm /usr/local/sbin/php-fpm
Tutoriel recommandé : Tutoriel vidéo PHP
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!