本文介绍了如何安装mcrypt PHP模块的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在使用Linux Mint 19.1.我的PHP配置如下所示
I am using Linux Mint 19.1. My PHP configuration is like below
我尝试安装 mcrypt 时遇到错误.
I am getting below error while I am trying to install mcrypt.
推荐答案
尝试使用这些命令
要安装依赖项:
sudo apt-get -y install gcc make autoconf libc-dev pkg-config
sudo apt-get -y install php7.2-dev
sudo apt-get -y install libmcrypt-dev
一旦安装了依赖项,就可以使用以下命令安装mcrypt:
Once the dependencies have been installed, you can install mcrypt with the command:
sudo pecl install mcrypt-1.0.1
这篇关于如何安装mcrypt PHP模块的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!