cookie和session

会话控制,
cookie:保存在客户端,使用setcookie()函数,函数原型如下:
 
  
  
  
  
  1. bool setcookie ( string $name [, string $value [, int $expire = 0 [, string $path [, string $domain [, bool $secure = false [, bool $httponly = false ]]]]]] ) 
例子:
 
  
  
  
  
  1. setcookie("username","even",time()+60,"/test",".example",1); 
一般常用的是前面三个参数,cookie变量名,变量值,有效期。让cookie()失效:
  
  
  
  
  1. setcookie("username","even",time()-1); 

session:
使用之前必须调用session_start()来开启session,

你可能感兴趣的:(PHP,会话控制)