Php session usage example _ PHP Tutorial

Source: Internet
Author: User
Php session usage example. 1. initialize (use before using session, and use one page.) copy the code as follows: session_start (); 2. the code for saving the Copy code is as follows: $ _ SESSION [$ session 1. initialization (before using session, use one page)

The code is as follows:


Session_start ();

2. Save

The code is as follows:


$ _ SESSION [$ sessionName] = $ value;

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

Example:

The code is as follows:


$ _ SESSION ['loginuser'] = "zs ";

3. retrieve the specified

Example:

The code is as follows:


$ UName = $ _ SESSION ['loginuser'];

4. delete the specified

Example:

The code is as follows:


Unset ($ _ SESSION ['loginuser']);

5. delete all sessions (delete the session file corresponding to the current browser)

The code is as follows:


Session_destroy ();

6. get session_id

The code is as follows:


$ Session_id = session_id ();
$ Session_id = SID; // constant

Compile (use before using session, and use one page.) the code is as follows: session_start (); 2. Save the code as follows: $ _ SESSION [$ session...

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.