2012-08-22 90 views

回答

1

嘗試設置Content-Disposition內聯

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

是。正確設置MIME類型,然後將Content-Disposition標頭設置爲inline

<?php 
header('Content-Disposition: inline; filename=blah.doc'); 
?> 
相關問題