设置强制下载文件的权限

时间:2016-01-11 06:33:21

标签: php file-permissions force-download

我必须强制下载excel文件。文件正在按我的要求完美下载。但问题是,当我要更改并保存文件内容时,我收到的错误显示我无法访问更改文件。因此,我必须在下载文件时设置文件权限。但我不知道怎么做。如果有人可以回答,那么将不胜感激。这是我的代码,可以完美地下载文件。

$filename = 'myfile.xlsx';
header("Content-type: application/vnd.ms-excel");
header("Content-Disposition: attachment; filename=$filename");
header("Pragma: no-cache");
header("Expires: 0");
print "$header\n$data";     //$header and $data are the array contains data with '\t' (tabular form data).

当我改变我的代码时。但仍有问题。问题是此代码仅对在服务器端创建的文件设置权限,而不对客户端下载的文件设置权限。这是更新的代码。

$filename = 'myfile.xlsx';
$fp = fopen('/var/www/html/cakephp-3.0/webroot/downloads/' . $filename, 'w');
fwrite($fp, "$header\n$data");
fclose($fp);
chmod('/var/www/html/cakephp-3.0/webroot/downloads/' . $filename, 0777);

// Generate Excel File
header("Content-type: application/vnd.ms-excel");
header("Content-Disposition: attachment; filename=$filename");
header("Pragma: no-cache");
header("Expires: 0");
readfile('/var/www/html/cakephp-3.0/webroot/downloads/' . $filename);

2 个答案:

答案 0 :(得分:0)

PHP有一个名为chmod()的函数用于更改文件权限。

用法:chmod($path,0777);

以下link 1link 2中的更多信息。

答案 1 :(得分:0)

解决。由于问题是客户端,文件被保存在某个文件夹中,默认情况下所有文件都是只读的。因此,当我更改下载文件夹位置时,它现在可以正常工作。所以代码已经完全正确了。