13 lines
165 B
PHP
Executable File
13 lines
165 B
PHP
Executable File
<?php
|
|
|
|
error_reporting(E_ALL); // 报告所有错误
|
|
ini_set('display_errors', 1); // 显示错误
|
|
|
|
$k = $_GET['k'];
|
|
|
|
if ($k !== "wocaonide") {
|
|
exit('x');
|
|
}
|
|
|
|
?>
|