代码初始化

This commit is contained in:
2023-08-21 14:46:51 +08:00
parent 6e2947edd4
commit d1cd08a4d6
1647 changed files with 235248 additions and 0 deletions

11
web/image.php Normal file
View File

@@ -0,0 +1,11 @@
<?php
set_time_limit ( 0 );
ini_set("memory_limit","-1");
header("Content-Type: image/JPEG");
if (!empty($_GET["url"])) {
$url = $_GET["url"];
$arr = get_headers($url, true);
header("content-length:" . $arr["Content-Length"]);
readfile($url);
}
?>