-
在 php 官网下载 mcrypt 包,php 扩展官网
# wget http://pecl.php.net/get/mcrypt-1.0.1.tgz
# tar xf mcrypt-1.0.1.tgz
# cd mcrypt-1.0. -
编译安装 mcrypt
# /usr/local/php/bin/phpize
# ./configure --with-php-config=/usr/local/php/bin/php-config && make && make install -
在php.ini加上扩展即可
extension=mcrypt.so
-
重启 php-fpm
lnmp restart
参考博文:php 7.2 安装 mcrypt 扩展