1
$ch = curl_init();

curl_setopt($ch, CURLOPT_URL, 'http://www.rlsnet.ru/tn_alf_letter_1.htm');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
$data = curl_exec($ch);
echo $data;
exit;

我在我的 windows 机器上使用这个代码并且页面加载良好,代码 200 ok,但是如果我把这个代码放在我的托管 linux 上,那么我得到 404 错误,这可能是什么原因?

4

1 回答 1

0

如果您只需要页面的内容,可能更容易使用file_get_contents 。

有时 curl 未启用,或者它是 curl 模块中的错误。

<?php
$res = file_get_contents('http://www.rlsnet.ru/tn_alf_letter_1.htm');
echo $res;
于 2013-09-30T13:51:38.763 回答