Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在 yii/php 中显示 pdf 的文本内容,目前我正在使用
$file=readfile('test.pdf'); echo $file;
通过使用这个我得到如图所示的二进制格式的Pdf文件,我想要文本格式的输出,如何实现呢?提前致谢
虽然不是 Yii 特定的,但您需要确保在尝试在浏览器中显示 PDF 文件时设置应用程序/pdf 内容类型。
像这样:
<?php header("Content-type: application/pdf"); $file = readfile('./pdf.pdf'); echo $file; ?>