我在 php/javascript/xul 中搜索了一个函数/命令,它可以将文件从 http 服务器传输到本地目录,但没有找到任何足够的答案。
是否有任何函数/命令可以使用 PHP/Javascript/XUL 中的任何一个来完成这项工作?
我在 php/javascript/xul 中搜索了一个函数/命令,它可以将文件从 http 服务器传输到本地目录,但没有找到任何足够的答案。
是否有任何函数/命令可以使用 PHP/Javascript/XUL 中的任何一个来完成这项工作?
这不能用 javascript 完成,但在 PHP 中,您必须发送正确的标头,然后像这样提供文件:
示例:强制下载 CSV 文件
header('Content-Type: application/csv');
header('Content-Disposition: attachment; filename=example.csv');
header('Pragma: no-cache');
readfile("/path/to/yourfile.csv");
这是文件下载的php脚本:
if (file_exists($file))
{
if (FALSE!== ($handler = fopen($file, 'r')))
{
header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename='.basename($file));
header('Content-Transfer-Encoding: chunked');
header('Expires: 0');
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
header('Pragma: public');
//Send the content in chunks
while(false !== ($chunk = fread($handler,4096)))
{
echo $chunk;
}
}
exit;
}
echo "<h1>Content error</h1><p>The file does not exist!</p>";