Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用来自 laravel 文档的这段代码,但我收到了这个错误“找不到类 'Crypter'”我在 app.php 中设置了 32 个字符
Crypter::encrypt('I actually like Hello Kitty');
看起来您使用了错误的类名,请尝试:
Crypt::encrypt('I actually like Hello Kitty');