使用cURL显示.txt文件中的内容

时间:2014-09-30 22:38:33

标签: php curl

如果未在其服务器上打开函数file_get_contents,我尝试使用cURL显示远程服务器上的txt文件中的内容。现在,我把它设置为:

    $updatelog ='http://www.linktoremotsite.com/updatelog.txt';

    if(function_exists('file_get_contents')){
    $log = file_get_contents($updatelog);
}else{
    $ch = curl_init();
    curl_setopt ($ch, CURLOPT_URL, $updatelog);
    curl_setopt($ch, CURLOPT_HEADER, 0);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    $log = curl_exec($ch);
    curl_close($ch);
}

echo '<div>' . $log . '</div>';

并且file_get_contents工作正常,但对于那些在他们的网站上没有启用它的人,我希望他们能够使用curl来查看.txt文件的内容。但我似乎无法显示.txt文件的内容。

.txt文件中有一些HTML,文件_get_contents可以整齐地显示,但不多,我想尽可能保持卷曲。

0 个答案:

没有答案