Example of session usage in php

Source: Internet
Author: User

1. Initialization (use before using session, and use one page)
Copy codeThe Code is as follows:
Session_start ();

2. Save
Copy codeThe Code is as follows:
$ _ SESSION [$ sessionName] = $ value;

(The value can be double, bool, int, array, or object data)

Example:
Copy codeThe Code is as follows:
$ _ SESSION ['loginuser'] = "zs ";

3. Retrieve the specified

Example:
Copy codeThe Code is as follows:
$ UName = $ _ SESSION ['loginuser'];

4. Delete the specified

Example:
Copy codeThe Code is as follows:
Unset ($ _ SESSION ['loginuser']);

5. Delete all sessions (delete the session file corresponding to the current browser)
Copy codeThe Code is as follows:
Session_destroy ();

6. Get session_id
Copy codeThe Code is as follows:
$ Session_id = session_id ();
$ Session_id = SID; // constant

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.