no message

This commit is contained in:
2025-10-18 14:46:52 +08:00
commit 7a84025b05
387 changed files with 75711 additions and 0 deletions

20
user/get_end_ticket.php Normal file
View File

@@ -0,0 +1,20 @@
<?php
include './sc.php';
$name = $_GET['name'];
if (!$_GET['name']) {
echo "444";
}
// 设置要读取的目录路径
$directory = './me/' . $user . '/' . $pass . '/tickets/'.$name;
$out = @file_get_contents($directory);
if ($out) {
echo $out;
} else {
echo "444";
}
?>