选择语言 :

 Module_Session::destroy

销毁当前Session

void Module_Session::destroy( )
返回值
  • void
File: ./modules/session/session.class.php
public function destroy()
{
    $_SESSION = array();
    Session::$member = null;
    $this->driver->destroy();
}