Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function download($binary, $filename) {
- header('Content-Disposition: attachment; filename="' . $filename . '"');
- header("Content-Type: application/octet-stream");
- header("Content-Description: File Transfer");
- header("Content-Length: " . strlen($binary));
- echo($binary);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement