我在php中使用文件处理来创建写入然后读取pdf文件。问题是它创建了pdf文件但无法打开它,当我打开文件时它只是说
“Adobe阅读器无法打开此文件,因为它不是受支持的文件类型或文件已损坏(例如:它是作为电子邮件附件发送的,但未正确解码)”
我的代码如下:
<?php
$file = "testFile.pdf";
$fh = fopen($file, 'w') or die("can't open file");
$stringData = "Bobby Bopper\n";
fwrite($fh, $stringData);
$stringData = "Tracy Tanner\n";
fwrite($fh, $stringData);
header("Cache-control: private");
header("Content-Type: application/pdf");
header("Content-Length: ".filesize($file));
header("Content-Disposition: inline; filename=$file");
readfile($file);
fclose ($fd);
?>