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.
Make 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.so
提示成功後,在php.ini裡加入extension = openssl.so
提示成功後,在php.ini裡加入extension = openssl.socom啥目錄下是config0.m4,而不是config.m4,不懂。
pcre、zlib等模組目錄下也是config0.m4。