可以用在不让使用图片标签作签名的论坛里:
<?php
$file = 'xxxxxxx.jpg';
header("Content-type: image/JPEG",true); $image = fread(fopen($file,r),filesize($file));
echo $image;
?>
很独到啊哈哈。