logout.php

来自「这是整套横扫千军3D版游戏的源码」· PHP 代码 · 共 12 行

PHP
12
字号
<?php
  // As an argument you should specify the "goback" string, which must be a filename of the
  // page to which it should redirect (withouth any "/" characters, just the filename, like "index.php")

  include("inc/functions.php");
  
  logout();

  $goback = $_GET['goback'];
  if ($goback == "") $goback = "index.php";
  redirect($goback);
?>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?