Skip to content

Instantly share code, notes, and snippets.

@craue
Created March 20, 2012 10:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save craue/2134052 to your computer and use it in GitHub Desktop.
Save craue/2134052 to your computer and use it in GitHub Desktop.
sending a download with custom filename in Symfony2
return new Response(
$content,
200,
array(
'Content-Type' => $mimeType,
'Content-Disposition' => sprintf('attachment; filename="%s"', $filename),
)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment