Files
2026-03-03 13:56:44 +08:00

7 lines
168 B
PHP

<?php
header("Content-Type: image/jpeg;text/html; charset=utf-8");
$url = "http://wn.ppxq.net/m/img/toux.jpg";
$img = file_get_contents($url, true);
echo $img;
exit;
?>