在已经编译安装好php7场景下安装phpopenssl扩展

编程

在已经编译安装好php7场景下  安装php openssl扩展

 yum install openssl-devel  #要安装这个,否则报错configure: error: Cannot find OpenSSL"s <evp.h> centos

cd  /root/php7/php-7.2.31/ext/openssl     #php7.2.31的源码包 openssl中有一个config0.m4,需要将其修改为config.m4,如果不这样./configure的时候提示找不到该文件,不知道原因。

/usr/local/php746/bin/phpize   ##进入安装源文件的gd扩展文件

./configure --with-php-config=/usr/local/php746/bin/php-config    

make

make test

make install

后在php.ini文件中引入该扩展
 

原文链接:https://www.cnblogs.com/qiangshangkeji/archive/2020/06/06/13055532.html

以上是 在已经编译安装好php7场景下安装phpopenssl扩展 的全部内容, 来源链接: utcz.com/z/517189.html

回到顶部