Gente como faço para abrir um pdf já criado no SC ?
Todos os códigos retornam
“Erro
Falha ao carregar documento PDF.”
Mas no cpanel abre.
$arquivo = “…/_lib/pdf/”.{chave}.".pdf";
/*
$file = $arquivo;
$filename = ‘NF-e.pdf’; // Note: Always use .pdf at the end.
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);
*/
/*
header(‘Content-Type: application/pdf’);
readfile($arquivo);
exit(0);
*/
/*
header(“Content-type: application/save; charset=utf-8”);
header(‘Content-Disposition: attachment; filename="’ . basename($arquivo) . ‘"’);
header(‘Expires: 0’);
header(‘Pragma: no-cache’);
readfile($arquivo);
*/