使用 PHP CURL 显示 PDF 文件只会产生奇怪的文本
Using PHP CURL to display PDF file is just producing strange text
我正在使用 PHP CURL 访问 PDF 文件,除最终结果不可读外,一切正常。我的代码如下:
$cookie = 'cookies.txt';
$timeout = 30;
$url = "http://www.somesite.com/sample_report.pdf";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER,true);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($ch, CURLOPT_TIMEOUT, 10);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout );
curl_setopt($ch, CURLOPT_COOKIEJAR, $cookie);
curl_setopt($ch, CURLOPT_COOKIEFILE, $cookie);
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Encoding: none','Content-Type: application/pdf'));
$result = curl_exec($ch);
echo $result;
当我在浏览器中手动输入 URL 时,PDF 会正确显示。但是当使用 CURL 时,它会显示乱码页面。
查看浏览器中的代码视图,我看到很多这样的行:
5 0 obj
<</Length 6 0 R/Filter /FlateDecode>>
stream
在 .pdf 应该显示的页面上,是以下代码:
<body>
<p>
<object id='mypdf' type='application/pdf' width='100%' height='90%' data='sample_report.pdf'>
</object>
</p>
</body>
有人有什么建议吗?
用这个试试(保持前 3 行相同)
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER,true);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($ch, CURLOPT_TIMEOUT, 10);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout );
curl_setopt($ch, CURLOPT_COOKIEJAR, $cookie);
curl_setopt($ch, CURLOPT_COOKIEFILE, $cookie);
//curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Encoding: none','Content-Type: application/pdf'));
header('Content-type: application/pdf');
$result = curl_exec($ch);
curl_close($ch);
echo $result;
我注释掉的行似乎没有做任何事情。我添加了 "header" 行。如果我删除该行,我会像您一样得到一页乱码。如果它仍然说 "headers already sent",那么一定是在其他地方设置了 header。
编辑:
我还建议更改此设置:
<object id='mypdf' type='application/pdf' width='100%' height='90%' data='sample_report.pdf'></object>
为此:
<iframe src="sample_report.pdf" width="100%" height="90%"></iframe>
或者,如果您的 PHP 脚本被调用 sample_report.pdf(例如)尝试将 iframe src 更改为 sample_report.php。
我正在使用 PHP CURL 访问 PDF 文件,除最终结果不可读外,一切正常。我的代码如下:
$cookie = 'cookies.txt';
$timeout = 30;
$url = "http://www.somesite.com/sample_report.pdf";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER,true);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($ch, CURLOPT_TIMEOUT, 10);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout );
curl_setopt($ch, CURLOPT_COOKIEJAR, $cookie);
curl_setopt($ch, CURLOPT_COOKIEFILE, $cookie);
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Encoding: none','Content-Type: application/pdf'));
$result = curl_exec($ch);
echo $result;
当我在浏览器中手动输入 URL 时,PDF 会正确显示。但是当使用 CURL 时,它会显示乱码页面。
查看浏览器中的代码视图,我看到很多这样的行:
5 0 obj
<</Length 6 0 R/Filter /FlateDecode>>
stream
在 .pdf 应该显示的页面上,是以下代码:
<body>
<p>
<object id='mypdf' type='application/pdf' width='100%' height='90%' data='sample_report.pdf'>
</object>
</p>
</body>
有人有什么建议吗?
用这个试试(保持前 3 行相同)
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER,true);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($ch, CURLOPT_TIMEOUT, 10);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout );
curl_setopt($ch, CURLOPT_COOKIEJAR, $cookie);
curl_setopt($ch, CURLOPT_COOKIEFILE, $cookie);
//curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Encoding: none','Content-Type: application/pdf'));
header('Content-type: application/pdf');
$result = curl_exec($ch);
curl_close($ch);
echo $result;
我注释掉的行似乎没有做任何事情。我添加了 "header" 行。如果我删除该行,我会像您一样得到一页乱码。如果它仍然说 "headers already sent",那么一定是在其他地方设置了 header。
编辑:
我还建议更改此设置:
<object id='mypdf' type='application/pdf' width='100%' height='90%' data='sample_report.pdf'></object>
为此:
<iframe src="sample_report.pdf" width="100%" height="90%"></iframe>
或者,如果您的 PHP 脚本被调用 sample_report.pdf(例如)尝试将 iframe src 更改为 sample_report.php。