如何通过PHP / readfile提供.dmg文件?

时间:2012-04-26 04:11:52

标签: php http-headers readfile dmg

我没有运气从我的网上商店购买.dmg。我将代码简化为以下代码进行调试,但无论我得到什么零字节文件:

header('Content-Type: application/x-apple-diskimage');   // also tried octet-stream
header('Content-Disposition: attachment; filename="My Cool Image.dmg"');
$size = filesize('/var/www/mypath/My Cool Image.dmg');
header('Content-Length: '.$size);
readfile('/var/www/mypath/My Cool Image.dmg');

这个代码适用于我提供的其他一些文件类型:bin,zip,pdf。有什么建议?谷歌教授不是我的朋友。

2 个答案:

答案 0 :(得分:4)

找到解决方案。罪魁祸首是readfile(),可能与内存有关。代替readfile()行,我正在使用它:

$fd = fopen ('/var/www/mypath/My Cool Image.dmg', "r");
while(!feof($fd)) {
    set_time_limit(30);
    echo fread($fd, 4096);
    flush();
}
fclose ($fd);

它现在可以正常提供所有文件类型,包括DMG。

答案 1 :(得分:1)

文件名中不应包含空格(当涉及到Web托管文件时不应使用空格)

尝试这样的方法或重命名文件,不要有空格:

<?php 
$path ='/var/www/mypath/';
$filename = 'My Cool Image.dmg';

$outfile = preg_replace('/[^a-zA-Z0-9.-]/s', '_', $filename);

header('Content-Type: application/x-apple-diskimage');   // also tried octet-stream
header('Content-Disposition: attachment; filename="'.$outfile.'"');

header('Content-Length: '.sprintf("%u", filesize($file)));

readfile($path.$filename); //This part is using the real name with spaces so it still may not work
?>