2024-05-25

php下载代码怎么写

php 下载文件的几种方法:使用 readfile() 函数直接下载。使用 header() 函数强制下载,阻止浏览器打开文件。使用 curl 库下载远程文件或执行更复杂的操作。

php下载代码怎么写

如何使用 PHP 下载文件

直接下载

PHP 中最简单的方法是使用 readfile() 函数:

<?php $file = 'file.txt';

if (file_exists($file)) {
    readfile($file);
} else {
    echo 'File not found.';
}
?>
登录后复制

强制文件下载

要强制浏览器将文件下载,而不是在浏览器中打开,可以使用 header() 函数:

<?php $file = 'file.txt';

if (file_exists($file)) {
    header('Content-Description: File Transfer');
    header('Content-Type: application/octet-stream');
    header('Content-Disposition: attachment; filename=' . basename($file));
    header('Content-Length: ' . filesize($file));
    readfile($file);
} else {
    echo 'File not found.';
}
?>
登录后复制

使用 cURL 库

如果您需要更复杂的功能,例如下载远程文件,可以使用 cURL 库:

<?php $url = 'https://example.com/file.txt';

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$data = curl_exec($ch);
curl_close($ch);

file_put_contents('file.txt', $data);
?>
登录后复制

以上就是php下载代码怎么写的详细内容,更多请关注php中文网其它相关文章!

https://www.php.cn/faq/803244.html

发表回复

Your email address will not be published. Required fields are marked *