2012-08-22 158 views

回答

1

尝试设置Content-Disposition内联

header("Content-Disposition", "inline;filename=somefile.ext") 
1

是。正确设置MIME类型,然后将Content-Disposition标头设置为inline

<?php 
header('Content-Disposition: inline; filename=blah.doc'); 
?> 
相关问题