""" 安装路径"""
--prefix=/usr/local/php
""" php.ini 配置文件路径"""
--with-config-file-path=/usr/local/php/etc
""" 优化选项"""
--enable-inline-optimization
--disable-debug
--disable-rpath
--enable-shared
""" 启用 opcache,默认为ZendOptimizer+(ZendOpcache) """
--enable-opcache
""" FPM """
--enable-fpm 开启php的fastcgi功能,即开启php-fpm功能
--with-fpm-user=www
--with-fpm-group=www
""" MySQL """
--with-mysql=mysqlnd
--with-mysqli=mysqlnd
--with-pdo-mysql=mysqlnd
""" 国际化与字符编码支持"""
--with-gettext
--enable-mbstring mbstring模块的主要作用在于检测和转换编码,提供对应的多字节操作的字符串函数。
--with-iconv
""" 加密扩展"""
--with-mcrypt
--with-mhash
--with-openssl
""" 数学扩展"""
--enable-bcmath
""" Web 服务,soap 依赖 libxml"""
--enable-soap \
--with-libxml-dir \
""" 进程,信号及内存"""
--enable-pcntl \
--enable-shmop \
--enable-sysvmsg \
--enable-sysvsem \
--enable-sysvshm \
""" socket & curl"""
--enable-sockets \
--with-curl \
""" 压缩与归档"""
--with-zlib \
--enable-zip \
--with-bz2 \
""" GNU Readline 命令行快捷键绑定"""
--with-readline
来源:oschina
链接:https://my.oschina.net/u/4353003/blog/4293544