Ejemplo n.º 1
0
 /**
  * 删除所有Cookie
  */
 public static function clearCookie()
 {
     if (is_array($_COOKIE)) {
         foreach ($_COOKIE as $key => $value) {
             W2Web::removeCookie($key);
         }
     }
 }