linux - 使用 phpize 和 首次安装编译时有什么区别吗
程序员文章站
2022-05-17 10:13:44
...
比如编译时候只执行
bash
cd ../php-5.6.8 ./configure --enable-fpm --with-mysql make sudo make install
然后后边再使用 phpize ./configure -xxxxx
好像 使用 phpize 编译安装的 ,比如 curl
都在
./lib/php/extensions/no-debug-non-zts-20090626/curl.so
目录下有 so 文件 .
那刚开始编译安装的呢 , 没有产生 so 文件吗?
回复内容:
比如编译时候只执行
bash
cd ../php-5.6.8 ./configure --enable-fpm --with-mysql make sudo make install
然后后边再使用 phpize ./configure -xxxxx
好像 使用 phpize 编译安装的 ,比如 curl
都在
./lib/php/extensions/no-debug-non-zts-20090626/curl.so
目录下有 so 文件 .
那刚开始编译安装的呢 , 没有产生 so 文件吗?
phpize 主要负责生成扩展的配置文件和Makefile,首次编译php,zend extenion扩展会生成动态库文件.so,比如opcache 在编译php时就会生成opcache.so,前提在configure 的时候加入--enable-opcache