- 下载php-8.3.x.tar.gz至服务器并解压
[root@apisix-test php-8.3.4]# wget https://www.php.net/distributions/php-8.3.4.tar.gz
- 进入目录执行编译命令,必须要带 --enable-zts 才能激活zts功能
[root@apisix-test php-8.3.4]# ./configure --prefix=/usr/local/php83-zts --with-config-file-path=/usr/local/php83-zts --with-config-file-scan-dir=/usr/local/php83-zts/php.d --enable-mysqlnd --with-mysqli --with-pdo-mysql --enable-fpm --with-fpm-user=nginx --with-fpm-group=nginx --with-gd --with-iconv --with-zlib --enable-xml --enable-shmop --enable-sysvsem --enable-inline-optimization --enable-mbregex --enable-mbstring --enable-ftp --with-openssl --enable-pcntl --enable-sockets --with-xmlrpc --enable-zip --enable-soap --without-pear --with-gettext --enable-session --with-curl --with-jpeg-dir --with-freetype-dir --enable-opcache --enable-zts
- 编译后安装
[root@apisix-test php-8.3.4]# make && make install
- 安装完成后复制php.ini文件到目录,并根据自身需求修改
[root@apisix-test etc]# cp /usr/local/src/php/php-8.3.4/php.ini-production /usr/local/php83-zts/php.ini
- 将命令添加至环境变量内容如下
[root@apisix-test etc]# cat /etc/profile.d/php.sh
export PHP_HOME=/usr/local/php8
export PATH=$PATH:$PHP_HOME/bin:$PHP_HOME/sbin
- 通过phpize安装需要的扩展
#以下扩展为php源码自带,其他扩展可在pecl下载后使用同样方法安装
[root@apisix-test exif]# cd /usr/local/src/php/php-8.3.4/ext/exif
[root@apisix-test exif]# /usr/local/php83-zts/bin/phpize
[root@apisix-test exif]# ./configure --with-php-config=/usr/local/php83-zts/bin/php-config
[root@apisix-test exif]# make && make install
- 扩展安装好后,将扩展名称添加到php.ini文件中
[root@apisix-test exif]# vim /usr/local/php83-zts/php.ini
#[PHP]行下添加如下内容保存退出
extension=exif
#使用php -m 命令验证扩展是否添加成功
[root@apisix-test etc]# php -m