进入源码包
cd php-7.1.9/ext/openssl
会发现有很多内置的扩展,这里我们编译的是openssl扩展.
编译
phpize
./configure --with-php-config=/usr/local/php7/bin/php-config
make && make install
添加配置
最后在php.ini中添加扩展
extension = "openssl.so"
遇到的问题
Cannot find config.m4.
Make sure that you run /usr/local/bin/phpize in the top level source
解决的方法是:在源码包中的openssl文件夹中将config0.m4重命名为confing.m4.执行下面的语句也可以.
cp ./config0.m4 ./config.m4 复制
最后要重启各种服务.