使用href

时间:2016-11-08 10:04:40

标签: php excel download

我在报告文件夹中有.xls文件

<a href="http://website.com/report/salesList.xls" download>
    <input type="button" class="btn btn-success" value="Download Report">  
</a> 

无效。

相反:

<a href="http://website.com/images/123.png" download>
    <input type="button" class="btn btn-success" value="Download Image">
</a> 

正在运作。

是否需要授予.xls格式文件的任何权限?

感谢。

1 个答案:

答案 0 :(得分:0)

在您自动生成Excel文件的php文件中,通过.xls更改chmod($file,0644)文件的权限。