跳出下载文本的对话框
Posted Ali|备份日志
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了跳出下载文本的对话框相关的知识,希望对你有一定的参考价值。
<?php function downfile() { $filename=realpath("https://www.baidu.com/"); //文件名 $date=date("Ymd-H:i:m"); Header( "Content-type: application/octet-stream "); Header( "Accept-Ranges: bytes "); Header( "Accept-Length: " .filesize($filename)); header( "Content-Disposition: attachment; filename= {$date}.doc"); echo file_get_contents($filename); readfile($filename); } downfile(); ?>
以上是关于跳出下载文本的对话框的主要内容,如果未能解决你的问题,请参考以下文章