gpt4 book ai didi

php - 使用 PHP 在 wwwroot 中自动下载一个文件(.sql)

转载 作者:行者123 更新时间:2023-11-29 03:52:36 25 4
gpt4 key购买 nike

到目前为止,我已经尝试过它可以下载 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 文件,但我总是得到空文件。我怎样才能解决这个问题?谢谢!

最佳答案

下面的代码将为您解决问题。

<?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);

关于php - 使用 PHP 在 wwwroot 中自动下载一个文件(.sql),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14743677/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com