我的需求是在a页面展示远程服务器上的pdf文件,代码如下:
<?php$fileName = "abcd.pdf";header("Content-Type: application/pdf");header('Content-Disposition: inline; filename*="utf8\'\''.$fileName.'"');ob_start();readfile("http://www.xxx.com/pdf/xyz.pdf");$content = ob_get_contents();ob_end_clean(); echo $content;
读取速度慢,可以后台读取缓存在本地
没有pdf阅读器比较麻烦
把inline;改成outline;