how to get session variables using session id

前端 未结 4 1902
耶瑟儿~
耶瑟儿~ 2020-12-09 16:02

I have the session id of my application. now i want to get all the session variables by using this session id.

I used t

4条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2020-12-09 16:48

    You can check all session value using this one..

    print_r($_SESSION);
    

提交回复
热议问题