vote up 2 vote down star

Hi

maybe this is ridiculous but i wonder if it is possible to let your user to download a file with a different name.

for example; there is a file called "4324ffsd34.jpg" and i want ppl to download it by download.php, with a different name( like "filetodownload.jpg" ). without renaming original file.

is that possible in any way?

thanks

flag

69% accept rate
You can also do this in Apache with mod_rewrite without needing to hit your PHP scripts. May not be applicable to your situation, but if it is, it could improve performance. – Artelius Oct 27 at 1:34

2 Answers

vote up 6 vote down check

Sure, use a Content-disposition header

header('Content-Disposition: attachment; filename="filetodownload.jpg"');
link|flag
yes i can see now, thx :), but i guess i must also use "readfile('original.pdf');" to do it – Ahmet vardar Oct 27 at 1:25
Absolutely, and good to set the Content-Length and Content-Type too. You can use filesize() for the length and write your own function based on the extension to do content-type or use uk2.php.net/fileinfo – David Caunt Oct 27 at 1:28
vote up 2 vote down

Sure you can, just try something like this:

$original_filename = '4324ffsd34.jpg';

// headers to send your file
header("Content-Type: application/jpeg");
header("Content-Length: " . filesize($original_filename));
header('Content-Disposition: attachment; filename="filetodownload.jpg"');

// upload the file to the user and quit
readfile($original_filename);
exit;

Hope it helps!

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.