给我一份生成环境下php的编译通过./configure的参数
时间: 2024-01-11 21:04:36 浏览: 105
生成环境下php的编译参数通常根据具体环境和需求而定,以下是一个常见的例子:
```
./configure --prefix=/usr/local/php \
--with-config-file-path=/usr/local/php/etc \
--enable-fpm \
--with-fpm-user=www-data \
--with-fpm-group=www-data \
--with-mysqli=mysqlnd \
--with-pdo-mysql=mysqlnd \
--with-openssl \
--with-curl \
--with-zlib \
--with-gd \
--with-jpeg \
--with-png \
--with-webp \
--with-freetype \
--enable-opcache \
--enable-mbstring \
--enable-gd-jis-conv \
--enable-bcmath \
--enable-sockets \
--enable-pcntl \
--enable-zip \
--enable-calendar \
--enable-exif \
--disable-rpath \
--disable-fileinfo \
--disable-debug \
--disable-phpdbg \
--disable-cgi \
--without-pear
```
这个参数选项主要包括了常用的扩展支持和优化选项,如FastCGI进程管理器(FPM)、MySQL支持、SSL支持、图像处理库GD等。同时,还禁用了一些不必要的功能以提高性能。需要注意的是,这个参数并不适用于所有情况,可能需要根据实际需求进行调整。
阅读全文