./configure
–prefix=/webserver/php-5.5.17
–with-config-file-path=/webserver/php-5.5.17/etc

#数据库部分
–with-mysql=mysqlnd #php官方的数据操作库
–with-pdo-mysql=mysqlnd 
–with-mysqli=mysqlnd 

#php压缩
–with-zlib
–with-zlib-dir
–enable-zip

#https,curl
–with-openssl
–with-curl

#图形处理
–with-freetype-dir #字体
–with-gd
–with-jpeg-dir
–with-png-dir
–enable-gd-native-ttf

–with-iconv=/usr/local/libiconv #iconv函数
–with-gettext

–with-mcrypt #加密
–with-xmlrpc
–with-libxml-dir=/usr
–enable-soap
–enable-xml

#开启模块
–enable-opcache
–enable-fpm
–with-fpm-user=www
–with-fpm-group=www
–enable-mbstring #多字节字符串的函数,如中文截取函数mb_substr
–enable-mbregex
–enable-ftp

–enable-pcntl #多进程
–enable-sockets

–enable-debug #用于调试php扩展
–enable-shared  #开启共享库编译

–disable-rpath
–enable-inline-optimization
–enable-sysvsem

Comments are closed.

Post Navigation