fuc/public/tests/include/head.php
2025-03-27 19:56:30 +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');
}
?>