Initial commit

This commit is contained in:
易焱
2021-04-18 18:51:51 +08:00
commit ec705f2fa8
3240 changed files with 623103 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
<?php
header('Content-type: image/jpg');
$url = $_GET['url'];
$refer = "http://www.qq.com/";
$opt = [
'http'=>[
'header'=>"Referer: " . $refer
]
];
$context = stream_context_create($opt);
$file_contents = file_get_contents($url,false, $context);
echo $file_contents;