Files
wnmj/GonghuiWeb/www/img.php

7 lines
168 B
PHP
Raw Normal View History

2026-02-24 09:25:17 +08:00
<?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;
?>