代码如下:
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
重启apache或php-fpm,完成.
PS:为啥目录下是config0.m4,而不是config.m4,不理解。
pcre、zlib等模块目录下也是config0.m4。
您可能感兴趣的文章:php基于mcrypt的加密解密实例Linux下PHP安装mcrypt扩展模块笔记php提示无法加载或mcrypt没有找到 PHP 扩展 mbstring解决办法PHP mcrypt可逆加密算法分析PHP加密扩展库Mcrypt安装和实例PHP 7.1中AES加解密方法mcrypt_module_open()的替换方案php开启openssl的方法php pki加密技术(openssl)详解php实现基于openssl的加密解密方法PHP 7.1中利用OpenSSL代替Mcrypt加解密的方法详解
方法
openssl
PHP