php官网:https://www.php.net
进入官网后点击downloads选择需要下载的版本即可
本文以php 7.3.10版本为例
安装包存放路径 /usr/local/src/
下载:
[root@linux src]# wget https://www.php.net/distributions/php-7.3.10.tar.bz2
解压:
[root@linux src]# tar -jxvf php-7.3.10.tar.bz2
编译安装:
进入目录 cd php-7.3.10.tar.bz2
配置编译参数:
./configure --prefix=/usr/local/php-fpm --with-config-file-path=/usr/local/php-fpm/etc --enable-fpm --with-fpm-user=php-fpm --with-fpm-group=php-fpm --with-mysql=/usr/local/mysql --with-mysqli=/usr/local/mysql/bin/mysql_config --with-pdo-mysql=/usr/local/mysql --with-mysql-sock=/tmp/mysql.sock --with-libxml-dir --with-gd --with-jpeg-dir --with-png-dir --with-freetype-dir --with-iconv-dir --with-zlib-dir --with-mcrypt --enable-soap --enable-gd-native-ttf --enable-ftp --enabl