欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  网络运营

linux环境下安装PHP的OpenSSL扩展的方法讲解

程序员文章站 2023-02-26 20:33:21
先安装依赖包:yum install openssl openssl-devel 进入php安装包里的openssl文件夹,根据个人的安装包位置不同,此处是 cd /h...

先安装依赖包:yum install openssl openssl-devel

进入php安装包里的openssl文件夹,根据个人的安装包位置不同,此处是

cd /home/local/php.5.6.25/ext/openssl/

phpize

可能会报错:cannot find config.m4.

make sure that you run /usr/local/bin/phpize in the top level source directory of the module,

在当前目录下执行:mv config0.m4   config.m4 

重新phpize

./configure --with-php-config=/usr/local/php/bin/php-config(php-config文件的路径)

make

make install

将openssl.so复制到php扩展文件夹中

修改php.ini中 extesion=openssl.so

以上这篇linux环境下安装php的openssl扩展的方法讲解就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。