|
本例中使用的是apaches作为服务器,如果使用nginx请另外找方法7 s" b* b ^2 q& i9 \8 \
首先安装必要的系统支持文件 - yum -y install autoconf epel-release wget unzip cmake cmake3 gcc gcc++ memcached-devel libmemcached libmemcached-devel httpd httpd-devel httpd-tools memcached libzip postgresql-devel libmcrypt libmcrypt-devel mcrypt mhash libxml2 libxml2-devel gcc openssl openssl-devel curl curl-devel libjpeg libjpeg-devel libpng libpng-devel freetype freetype-devel pcre pcre-devel libxslt libxslt-devel bzip2 bzip2-devel
复制代码 安装以上项之后,可以安装最新的PHP版本,本例中使用的是PHP7.3.12,
( A; B5 z' a. T/ @0 F$ ?5 c! H" N$ t5 |. r, |
下载安装libzip ,在PHP中需要使用这个扩展0 H7 f! F$ o3 m
- wget https://libzip.org/download/libzip-1.5.2.tar.gz; v" e( F G% J/ m1 L$ X# l
- mkdir build7 n! y& Z. e# n c5 z
- cd build
7 a3 o8 M1 w$ J' R% t7 R - cmake3 ..# N( ^$ n; k7 C4 |. d2 p
- make 3 P! s& E' |9 c! }( B# Q+ r0 n
- make install
复制代码 之后就可以下载PHP最新版本了
3 ?/ T& i% N6 X安装命令如下 :
0 C& s1 P, Q4 F6 `, @; K$ S0 m, y- ./configure --prefix=/home/php/php7.3.12 --with-apxs2 --with-pdo-mysql --enable-debug --enable-debug --with-libxml-dir --with-openssl --with-zlib --with-bz2 --enable-calendar --with-curl --with-libxml-dir --with-gd --with-openssl-dir --with-jpeg-dir --with-png-dir --with-zlib-dir --with-freetype-dir --with-gettext --enable-mbstring --with-mysqli --with-pgsql --enable-shmop --with-libxml-dir --with-openssl-dir --enable-sockets --with-libxml-dir --with-zlib-dir --enable-mysqlnd --with-zlib-dir --with-libzip --enable-zip --with-pdo-pgsql
复制代码
# ^4 T8 b' B# @& b* A
1 C; I, z/ H* W. z4 o- B+ o5 ~4 I
' Y% ]7 E- B G
; ^8 j* P- j3 z( F X
+ q h' d2 e$ A6 G! N0 }, U
" T( z; m, i7 X; z5 U
! b3 x2 ?: V0 s |
|