2

我正在尝试使用 Laravel 执行以下行,

Hash::make('asdqwe');

但它失败并出现此错误:

Bcrypt hashing not supported.

我检查了我的php.iniextension=mcrypt.so已启用,并phpinfo()会显示:

phpinfo() 中的 mcrypt

任何的想法?谢谢

4

1 回答 1

1

Laravel 4 至少需要 PHP 5.3.7 并安装了 MCrypt 扩展

来源: http: //laravel.com/docs/installation#server-requirements

于 2013-06-19T20:28:03.543 回答