使用PHP自动下载wwwroot中的文件(.sql)

时间:2013-02-07 04:39:46

标签: php mysql

到目前为止,我尝试过它可以下载sql文件,但它是空的

//test.php

 <?php
header("Content-type: application/octet-stream");
header('Content-Disposition: attachment; filename=wordpress_db1.sql');
?>

这是我的根文件夹的样子

enter image description here

我想在运行test.php时下载wordpress_db1.sql文件,但我总是空着它。我怎样才能解决这个问题?谢谢!

2 个答案:

答案 0 :(得分:5)

设置标题不会读取文件。您可以在附件中将文件命名为任何名称。你必须实际发出文件:

readfile('wordpress_db1.sql');

答案 1 :(得分:5)

下面的代码将为您提供帮助。

<?php 
$file_name = 'file.sql';
$file_url = 'http://www.example.com/' . $file_name;
header('Content-Type: application/octet-stream');
header("Content-Transfer-Encoding: Binary"); 
header("Content-disposition: attachment; filename=\"".$file_name."\""); 
readfile($file_url);
?>

你出错了什么readfile($file_url);。设置标题将无法完成工作。你使用readfile($file_url);