使用PhantomJSCloud创建PDF

时间:2015-07-21 11:48:28

标签: php pdf phantomjs

现在我使用以下代码创建PDF

and 95 some other text

我总是收到错误404:内容不是 找到。

该网页与http://www.example.com的内容完全相同,当我使用http://www.example.com更改网址时,该网页有效。

我做错了什么?

编辑:它适用于简单的.html文件,但如果我有一个简单的

的php文件
<?php
header('Content-Type: application/pdf');
$baseLink = 'http://myphantomjsurl/single/browser/v1/v1regression/';
$targetLink = 'http://myurl/view_appointment.html';
$link .=$baseLink.'?requestType=pdf&targetUrl='.$targetLink ;
$CurlConnect = curl_init();
curl_setopt($CurlConnect, CURLOPT_URL, $link);
curl_setopt($CurlConnect, CURLOPT_RETURNTRANSFER, 1 );
$Result = curl_exec($CurlConnect);
echo $link;
echo $Result;
?>

它不起作用。

0 个答案:

没有答案