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

php如何安装openssl扩展?

程序员文章站 2022-03-24 11:07:59
...

php安装openssl扩展的方法:首先找到php推展目录的openssl文件;然后将【config0.m4】修改为【config.m4】,并在phpize进行配置;接着进行编译安装,并配置【php.ini】,添加拓展;最后重启php服务。

php如何安装openssl扩展?

php安装openssl扩展的方法:

1.首先找到php推展的目录 我的是在‘/usr/local/php-7.1.5/ext’下

php如何安装openssl扩展?

2.进入openssl目录,将里面的一个config0.m4修改为config.m4执行命令为 “mv config0.m4 config.m4

php如何安装openssl扩展?

3.进入 phpize ‘/usr/local/php/bin/phpize ’

php如何安装openssl扩展?

4.进行配置

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

php如何安装openssl扩展?

5.进行编译安装,成功后会提示在某个目录生成.so文件

make

sudo make install

php如何安装openssl扩展?

6.配置php.ini,添加拓展

php如何安装openssl扩展?

7.重启php服务

/etc/init.d/php-fpm restart

php如何安装openssl扩展?

8.查看安装成功与否,phpinfo中查找openssl模块

php如何安装openssl扩展?

相关学习推荐:PHP编程从入门到精通

以上就是php如何安装openssl扩展?的详细内容,更多请关注其它相关文章!

相关标签: php openss