fork download
  1. <?php
  2.  
  3. $resource = $_GET['src']; // здесь вовзращается путь в стиле /upload/iblock/81/example.pdf
  4. $file = pathinfo($resource);
  5. header("Content-type: application/pdf");
  6. header('Content-Disposition: attachment; filename="' . $file['basename'] . '"' );
  7.  
  8. readfile($_SERVER['DOCUMENT_ROOT'] . $resource);
  9.  
Success #stdin #stdout #stderr 0.02s 24532KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
PHP Notice:  Undefined index: src in /home/j4K9DF/prog.php on line 3
PHP Warning:  readfile(): Filename cannot be empty in /home/j4K9DF/prog.php on line 8