<p>php强制访问类型为下载,自定义内容,自定义文件名称</p>
<p>$image_filename='Untitled-2.html';<br />
$return_img=file_get_contents('5.jpg');<br />
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");<br />
header('Content-type: application/octet-stream');<br />
header('Content-type: application/force-download');<br />
header('Content-Disposition: attachment; filename="'.$image_filename.'"');<br />
echo $return_img;<br />
exit;</p>