yum -y install openssl
登入後複製
/usr/local/bin/是php的安裝目錄
切換到php安裝目錄的etx/openssl目錄
cd /root/soft/php-5.2.8/ext/openssl
/usr/local/bin/phpize
登入後複製
登入後複製
Cannot find config.m4.ake config.m4.ake sure that you run '/usr/local/bin/phpize' in the top level source directory of the module
查看openssl目錄下有個config.w32和config0.m4,把config0.m4改名為config.m4。
mv config0.m4 config.m4
執行:
/usr/local/bin/phpize
登入後複製
登入後複製
編譯:
./configure --with-openssl --with-php-config=/usr/local/bin/php-config
make;make install
登入後複製
提示成功後,在php.ini裡加入extension = openssl.T 為啥目錄下是config0.m4,而不是config.m4,不理解。
pcre、zlib等模組目錄下也是config0.m4。
更多不重新編譯PHP為php增加openssl模組的方法相關文章請關注PHP中文網!