到目前为止,我尝试过的可以下载 sql 文件,但它是空的
//test.php
<?php
header("Content-type: application/octet-stream");
header('Content-Disposition: attachment; filename=wordpress_db1.sql');
?>
这是我的根文件夹的样子
我想在运行 test.php 时下载 wordpress_db1.sql 文件,但我总是在它上面空着。我怎样才能解决这个问题?谢谢!