garfield

[COD]: Forçando o download de arquivo

May 7th, 2011
405
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.36 KB | None | 0 0
  1. <?php
  2. //      @Author: [iPs]SuYaNw
  3.  
  4.     function ForceDownloadFile($arquivo)
  5.     {
  6.         if(!file_exists($arquivo)) return false;
  7.             $tipo = strstr($arquivo,'.');
  8.         header("Content-Type: ".$tipo);
  9.         header("Content-Length: ".filesize($arquivo));
  10.         header("Content-Disposition: attachment; filename=".basename($arquivo));
  11.         readfile($arquivo);
  12.     }
  13. ?>
Add Comment
Please, Sign In to add comment