Colleagues. Is it possible to open a PDF file directly inside the browser? I tried the file_get_contents () and fopen (), but it opened from decoded. So I tried it that way, but it opened in the entire browser:
$arquivo='0eb178d150b82f5536588fbfea5fa7bd.pdf';
header('Content-type: application/pdf');
header('Content-Disposition: inline; filename="0eb178d150b82f5536588fbfea5fa7bd.pdf"');
@readfile($arquivo);