这篇文章主要介绍了关于编译安装PHP的方法,有着一定的参考价值,现在分享给大家,有需要的朋友可以参考一下

编译安装PHP

#安装依赖
yum install gcc bison bison-devel zlib-devel libmcrypt-devel mcrypt mhash-devel openssl-devel libxml2-devel libcurl-devel bzip2-devel readline-devel libedit-devel sqlite-devel jemalloc jemalloc-devel

#进入解压后的php源码目录下
#编译命令,执行后在源码目录的父目录下生成编译后的子目录
./configure --prefix=/ \
--with-config-file-path=/ \--enable-inline-optimization \--disable-debug \--disable-rpath \--enable-shared \--enable-opcache \--enable-fpm \--with-mysqli \--with-pdo-mysql \--with-gettext \--enable-mbstring \--with-iconv \--with-mcrypt \--with-mhash \--with-openssl \--enable-bcmath \--enable-soap \--with-libxml-dir \--enable-pcntl \--enable-shmop \--enable-sysvmsg \--enable-sysvsem \--enable-sysvshm \--enable-sockets \--with-curl \--with-zlib \--enable-zip \--with-bz2 \--with-gd \--with-freetype-dir \--with-jpeg-dir \--with-png-dir##如果出现 libpng not found
yum install libpng
yum -y install libpng-devel


##如果出现 libjpeg not found
yum install libjpeg
yum -y install libjpeg-devel

##如果出现 freetype-config not found.
yum -y install freetype-devel.x86_64


#清理编译
make clean

#编译安装
make && make install
#或 
make all install
登录后复制

相关推荐:

yum安装php

以上就是编译安装PHP的方法的详细内容,更多请关注Work网其它相关文章!

09-11 06:49