Skip to content

Instantly share code, notes, and snippets.

@ducxinh
Created July 9, 2018 13:27
Show Gist options
  • Save ducxinh/50fc9bc9462d75bd7c874f7f3f9fa503 to your computer and use it in GitHub Desktop.
Save ducxinh/50fc9bc9462d75bd7c874f7f3f9fa503 to your computer and use it in GitHub Desktop.
pdf
<?php
$file = public_path('signa/sample/new.pdf');
$filename = 'new.pdf';
header('Content-type: application/pdf');
header('Content-Disposition: inline; filename="' . $filename . '"');
header('Content-Transfer-Encoding: binary');
header('Content-Length: ' . filesize($file));
header('Accept-Ranges: bytes');
@readfile($file);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment