7 lines
168 B
PHP
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;
|
|
?>
|