标签:tps length color path content att bytes php header
<?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(); ?>
标签:tps length color path content att bytes php header
原文地址:http://www.cnblogs.com/aliblogs/p/6369254.html