由于Laravel4需要mcrypt
扩展,并且PHP7似乎没有mcrypt
扩展,是否有任何解决方法可以使用它?
有同样的问题 - PHP7缺少mcrypt.
这对我有用.当被问到时,请保留本地PHP配置文件.
sudo apt-get update sudo apt-get install mcrypt php7.0-mcrypt sudo apt-get upgrade
安装后重新启动FPM(或Apache或NGINX等).
我在Mac上和laravel代客我用这个解决了:
brew安装php70-mcrypt
即使您在php.ini中启用mcrypt,也可能出现此问题.请尝试以下步骤.
sudo apt-get update sudo apt-get install mcrypt php7.0-mcrypt
我在ubuntu 16.04工作,以下命令也帮助了我.
whereis php -shows the files with this name php -v -shows the php version which php -shows current php version that is running on the server
在ubuntu上:根据launchpad.net,mcrypt的包名为php7.0-mcrypt.
sudo apt-get install php7.0-mcrypt
安装