PHP session Using the example _php instance

Source: Internet
Author: User

1. Initialization (use before session, a page with one can be)

Copy Code code as follows:

Session_Start ();

2. Save

Copy Code code as follows:

$_session[$sessionName]= $value;

(Value can be double,bool,int, array, object type of data)

Example:

Copy Code code as follows:

$_session[' Loginuser ']= "ZS";

3. Remove the specified

Example:

Copy Code code as follows:

$uName =$_session[' Loginuser '];

4. Delete the specified

Example:

Copy Code code as follows:

unset ($_session[' loginuser '));

5. Delete all sessions (delete the current browser's corresponding session file)

Copy Code code as follows:

Session_destroy ();

6. Get session_id

Copy Code code 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.