Laravel 使用 Cookie

版权声明:阿西莫多 https://blog.csdn.net/yang_yun_hao/article/details/81669642
use Illuminate\Support\Facades\Cookie; 引用cookie
Cookie::queue('account',['phone'=>$phone,'pwd'=>$pwd]); // 将数据存入cookie 
Cookie::queue(Cookie::forget('account')); // 删除cookie 这样才能完全删除
Cookie::get('account'); // 获取cookie

猜你喜欢

转载自blog.csdn.net/yang_yun_hao/article/details/81669642