Blogger Information
Blog 40
fans 0
comment 0
visits 37486
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
tp5-session会话
虎子爸爸
Original
651 people have browsed it

//添加设置用户登录信息session

            Session::set('user_id',$user->id);//当前用户的ID

            Session::set('user_info',$user->getData());//当前用户的所有信息

//读取session

//查询获取当前登录用户的ID,密码

        $user_id = Session::get('user_id'); 

//修改session

Session::set('user_id',$user->id);//当前用户的ID

//删除session

Session::delete('user_id');

Session::delete('user_info');


Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post