我正在研究 HTML2PS,它在旧服务器上运行良好,移到新服务器后停止工作。
我已经隔离了从服务器找不到我通过 CURL 访问的临时文件的问题,但是可以从其他位置(例如我的本地计算机)获取该文件
由于我可能会删除此链接,因此此 URL 在不久的将来可能无法使用。
http://www.lapchi.com/new/temp_curl.php5
链接代码如下
<form method="post">
<input type="text" name="url" value="http://www.lapchi.com/new/uploads/temp/html_pdf/503_S_b7ku0sbn1i8g8ll06ra1pth332.html" size="90" />
<input type="submit" value="go">
</form>
<?php
set_time_limit(8888);
if($_POST){
$url = $_POST['url'];
$curl = curl_init();
curl_setopt($curl, CURLOPT_URL,$url ); // this file is physically exist on server
curl_setopt($curl, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows; U; Windows NT 5.1; rv:1.7) Gecko/20040803 Firefox/0.9.3");
curl_setopt($curl, CURLOPT_HEADER, 1);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
$response = curl_exec($curl);
if ($response === FALSE) {
error_log(sprintf('Cannot open %s, CURL error is: %s',
$url,
curl_error($curl)));
curl_close($curl);
return null;
}
curl_close($curl);
preg_match('/^(.*?)\r\n\r\n(.*)$/s', $response, $matches);
$headers = array_slice(explode("\r\n", $matches[1]),1);
$content = $matches[2];
echo $content;
}
我不确定,为什么不能通过 CURL 找到同一服务器上的相同文件,但其他人可以 CURL 这个 url 而这个页面可以 curl 其他 url