Artem0071: задача какая? Сохранить секретность прямых ссылок на файлы? Тогда file_get_content, примерно так:
header('Content-Disposition: attachment; filename="somefile.jpg"');
header("Content-Type: application/octet-stream");
header("Content-Length: " . filesize($outputName));
echo (file_get_contents($outputName));
если не принципиально - хеадер типа такого:
header("Pragma: public");
header("Expires: 0");
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header("Content-Type: application/force-download");
header("Content-Type: application/octet-stream");
header("Content-Type: application/download");
header("Content-Disposition: attachment;filename=somefile.jpg ");
header("Content-Transfer-Encoding: binary ");