2015年3月10日 11:29:56
Linux上要安装openssl
1 #yum -y install openssl 2 #yum -y install openssl-devel
php安装openssl模块
phpize (如果提示找不到config.m4文件, 进入phpsrc/ext/openssl, 将config0.m4复制一份命名为config.m4)
.configure --with-php-config=.... (linux需要安装openssl模块, 否则会提示Cannot find OpenSSL‘s <evp.h>)
make && make install
复制生成的openssl.so 到PHP安装目录的ext文件夹里
然后在PHP.ini中开启该模块, 重启fpm即可
时间: 2024-10-10 06:27:44