$file_name = "building.jpg";
$file_path = dirname(__FILE__)."/".$file_name;
$download_file_name = "building.jpg";
header('Content-Type: application/force-download;');
header('Content-Length: '.filesize($file_path));
header('Content-Disposition: attachment; filename="'.$file_name.'"');
readfile($download_file_name);
特に問題なし

うーん、複数のファイルをDLしたいです。