“Header php pdf terbuka di browser” Kode Jawaban

Header php pdf terbuka di browser

$file = 'headerPdfFile.pdf';

$filename = 'IamPdfFile.pdf';
  
// Header content type
header('Content-type: application/pdf');
  
header('Content-Disposition: inline; filename="' . $filename . '"');  
  
// Read the file
@readfile($file);
Sleepy Scarab

header php pdf

<?php
header("Pragma: public");
    header("Expires: 0");
    header("Accept-Ranges: bytes");
    header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
    header("Content-Type: application/pdf");
    header("Content-Disposition: attachment; filename=order.pdf");
    header("Content-Transfer-Encoding: binary");
Shadow

Jawaban yang mirip dengan “Header php pdf terbuka di browser”

Pertanyaan yang mirip dengan “Header php pdf terbuka di browser”

Lebih banyak jawaban terkait untuk “Header php pdf terbuka di browser” di PHP

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya