github/public/tests/include/head.php
2025-04-12 19:11:43 +08:00

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');
}
?>