我嘗試從網址下載的SWF文件,從數1752至1760號我 做了一個代碼,一切看起來正常,但該文件被破壞!它們的大小爲0,他們是空的! (在SWF文件) 我不知道什麼是錯我的代碼。 這裏是我的代碼:空文件加入SWF文件時
<?php
$num = 1753;
$files = array('');
while($num !== 1760){
array_push($files, '');
$num++;
}
print_r($files);
$zip = new ZipArchive();
$tmp_file = tempnam('.','');
$zip->open($tmp_file, ZipArchive::CREATE);
foreach($files as $file){
$download_file = file_get_contents($file);
$zip->addFromString(basename($file),$download_file);
}
$zip->close();
header('Content-disposition: attachment; filename=Resumes.zip');
header('Content-type: application/zip');
readfile($tmp_file);
?>
幫助?
仍然是空的SWF文件... – Motimot