51工具盒子

依楼听风雨
笑看云卷云舒,淡观潮起潮落

PHP 7.4.33添加Redis扩展

一、PHP简介

PHP是一种创建动态交互性站点的强有力的服务器端脚本语言。PHP是目前动态网页开发中使用最为广泛的语言之一。PHP能运行在包括Windows、Linux等在内的绝大多数操作系统环境中。

PHP是免费的,并且使用非常广泛。同时,对于像微软ASP这样的竞争者来说,PHP无疑是另一种高效率的选项。

二、添加Redis扩展

1、下载php-redis软件包

[root@localhost php-redis]# wget -c https://pecl.php.net/get/redis-5.3.6.tgz

2、解压

[root@localhost php-redis]# tar xf redis-5.3.6.tgz

3、生成configure

[root@localhost php-redis]# cd redis-5.3.6

注意:phpize安装位置可通过此命令查找:find / -name "phpize"

[root@localhost redis-5.3.6]# /usr/bin/phpize

Configuring for:

PHP Api Version: 20190902

Zend Module Api No: 20190902

Zend Extension Api No: 320190902

注意:php-config安装位置可通过此命令查找:find / -name "php-config"

[root@localhost redis-5.3.6]# ./configure --with-php-config=/opt/remi/php74/root/usr/bin/php-config

[root@localhost redis-5.3.6]# make && make install

4、查看是否生成redis.so

[root@localhost ~]# ll /opt/remi/php74/root/usr/lib64/php/modules/redis.so

-rwxr-xr-x 1 root root 2718120 Mar 13 16:48 /opt/remi/php74/root/usr/lib64/php/modules/redis.so

5、创建redis.ini文件

[root@localhost ~]# cd /etc/opt/remi/php74/php.d

[root@localhost php.d]# vim redis.ini

;Enable redis extension module
extension=redis.so

6、重启php-fpm和nginx

[root@localhost php.d]# systemctl restart php74-php-fpm

[root@localhost php.d]# systemctl restart nginx

7、查看测试页是否成功加载Redis模块

PHP 7.4.33添加Redis扩展
继续阅读 PHP最后更新:2023-3-15

赞(0)
未经允许不得转载:工具盒子 » PHP 7.4.33添加Redis扩展