exit.php
来自「php版wap手机网站源码(英语) the best wap scripts 」· PHP 代码 · 共 17 行
PHP
17 行
<?php
error_reporting(0);
$k=trim($_GET['k']); include("key.php"); include_once("cnfg.php");
$str="";
if ($fl=@file("userkeys.dat")) {
for ($i=0;$i<count($fl);$i++) {
list($p1,$p2,$p3,$p4,$p5,$p6,$p7)=split('\^',trim($fl[$i]));
if ($p1<>$k) {$str.=$fl[$i];}
else {
include_once("freedata.php"); freedata($p1);
}
}
}
$f=@fopen("userkeys.dat","w"); @fwrite($f,$str); @fclose($f);
header("Location: http://bwap.org/index.php"); exit;
?>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?