在linux下如何安装php5.2

2023-04-08 13:16:00 linux 安装 PHP5

在linux下安装php5.2的方法有很多种,这里介绍一种比较简单的方法。

首先,从官网下载php5.2的源码包,然后解压缩。

解压缩后进入php5.2的源码目录,执行如下命令:

./configure --prefix=/usr/local/php5 --with-config-file-path=/usr/local/php5/etc --enable-inline-optimization --disable-debug --disable-rpath --enable-shared --enable-opcache --enable-fpm --with-fpm-user=www-data --with-fpm-group=www-data --with-mysql=mysqlnd --with-mysqli=mysqlnd --with-pdo-mysql=mysqlnd --with-iconv-dir --with-freetype-dir=/usr/local/freetype --with-jpeg-dir --with-png-dir --with-zlib --with-libxml-dir=/usr --enable-xml --disable-rpath --enable-mbstring --enable-session --with-curl --with-openssl --with-gd --enable-gd-native-ttf --with-webp-dir --with-jpeg-dir --with-freetype-dir --enable-pcntl --enable-json --enable-zip --enable-opcache --enable-bcmath

如果编译过程中提示缺少依赖库,可以使用如下命令安装依赖库:

yum install -y libxml2-devel curl-devel libjpeg-devel libpng-devel freetype-devel

安装依赖库后重新执行编译命令。

编译完成后执行如下命令安装php5.2:

make && make install

安装完成后,执行如下命令查看php5.2的版本:

/usr/local/php5/bin/php -v

输出结果如下:

PHP 5.2.17 (cli) (built: May 12 2016 08:17:47) Copyright (c) 1997-2010 The PHP Group Zend Engine v2.2.0, Copyright (c) 1998-2010 Zend Technologies

可以看到,php5.2已经安装成功。

相关文章