Verifying your identity through session_id

Source: Internet
Author: User
PHP code

账号密码验证成功:                session('uid',100);                $sid=session_id();                $this->ajaxReturn(array("result"=>"1","sessionid"=>$sid));               

The HTML page will save session_id in a cookie named SID

  $.cookie('sid', response.data.sessionid);

Verify PHP, each page request sends SID (SESSION_ID)

      $sid=I('post.sid');        session_id($sid);        $this->ajaxReturn(array("uid"=>session('uid'),"sid"=>"$sid"));

Question: Could not get the session's worth or null
But Sid passed the past.

Reply content:

PHP code

账号密码验证成功:                session('uid',100);                $sid=session_id();                $this->ajaxReturn(array("result"=>"1","sessionid"=>$sid));               

The HTML page will save session_id in a cookie named SID

  $.cookie('sid', response.data.sessionid);

Verify PHP, each page request sends SID (SESSION_ID)

      $sid=I('post.sid');        session_id($sid);        $this->ajaxReturn(array("uid"=>session('uid'),"sid"=>"$sid"));

Question: Could not get the session's worth or null
But Sid passed the past.

The session will automatically save the identity SessionID on the client, and each request will also carry the session ID to the server. No additional processing is required. Do not know what you are doing here to define an additional SID cookie.
Another cookie is scoped, do you have the same two request domain?

  • Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.