Operation of the PHP session

Source: Internet
Author: User
Tags php session

"Set session data"<?PHPSession_Start();//the initialization of the//session file can be saved Dobule,integer,bool,array,object$_session[' Name ']= ' Lisa ';$_session[' Age ']=100;$_session[' Isboy ']=true;$arr 1=Array("Beijing", "Lisa", "183249123");$_session[' Arr1 ']=$arr 1;$dog 1=NewDog ("Xiao Huang", 5, "yellow");//introducing the Dog class$_session[' Dog1 ']=$dog 1;?>"Get Session Data"<?PHPSession_Start();//InitializePrint_r($_session);//all Session$_session[' Key '];//specify a value with key get$arr 1=$_session[' arr ']//Get Arrayforeach($arr 1  as $key=$val){    Echo"$val";}//gets the object, to introduce the object class dog.class.php$dogs=$_session[' Dog1 ']; $dogs->getname ();//class Method?>"Update session data"<?PHPSession_Start();//Initialize$_session[' Name ']= ' newname ';?>"Delete session data"<?PHPSession_Start();//Initializeunset($_session[' key ']);//Delete a keySession_destroy();//Delete all keys, corresponding session files deleted?>

Operation of the PHP 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.