微信的接口需要使用到mcrypt加解密,但是php 7.1开始已经移除mcrypt扩展,需要自行安装。
1.环境
1 | 系统:centos 7 |
2.安装依赖包
1 | yum install libmcrypt libmcrypt-devel mcrypt mhash |
3.安装mcrypt扩展
1 | wget http://pecl.php.net/get/mcrypt-1.0.2.tgz |
1 | ...... |
4.重载php-fpm配置
1 | kill -USR2 `cat /var/run/php.pid` #php-fpm可以通过信号重载配置 |