>백엔드 개발 >PHP 튜토리얼 >PHP 다운로드 file_put_contents 대 읽기 파일

PHP 다운로드 file_put_contents 대 읽기 파일

WBOY
WBOY원래의
2016-07-28 08:27:511502검색

set_time_limit(0);
ini_set('memory_limit', '512M');
//获取当前时间
function getTime($convert = true)
{
    return microtime($convert );
}
//获取当前内存
function memory()
{
    return memory_get_usage();
}
$m = memory();
$s = getTime();
$file = file_get_contents("a.zip", true);
header("콘텐츠 유형: 애플리케이션/옥텟-스트림");
header("수락- 범위: 바이트");
header("Accept-Length: " .filesize('a.zip'));
header('Content-Disposition: attachment; filename="a.zip"');
echo $file;
error_log('file_put_contents:         内存:'.(memory()-$m).',耗时:'.(getTime()-$s).'rn',3, 'D:/1.txt');
/* readfile() 벤치마크 */
$m = memory();
$s = getTime();
ob_start();
header('Content-Type: 애플리케이션/옥텟-스트림');
header("Accept-Ranges: bytes");
header("Accept-Length: " . filesize('a.zip') );
header('Content-Disposition: attachment; filename="a.zip"');
header('Content-Transfer-Encoding: 바이너리');
readfile('a.zip' );
ob_end_clean();

error_log('readfile:         内存:'.(memory()-$m).',耗时:'.(getTime()-$s).' rn',3,'D:/1.txt');

结果如下:

2k文件
file_put_contents:         内存:2304,耗时:0.00099992752075195
읽기 파일:内存:888,耗时: 0.002000093460083
20M文件
file_put_contents:         内存:50126256,耗时:0.21602201461792
readfile:                 内存:896,耗时:0.071007013320923
153M文件
file_put_contents:         内存:321370872,耗时:1.0341031551361
readfile:                  内存:840,耗时:1.9421939849854

结论:상동条件下下下载大文件时使用readfile更省内存,不容易导致php内存溢出问题。

以上就介绍了 PHP 下载 file_put_contents vs readfile, 包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
이전 기사:PHP의 어려움 (3)다음 기사:PHP의 어려움 (3)