从PHP中获取url的内容

时间:2017-04-19 17:03:51

标签: php curl file-get-contents

我想将URL的内容放在字符串中并处理它。但是,我有一个问题。

网址为 http://138.201.123.244:8990/time/data.txt

当我在服务器(cPanel)中使用cURL和file_get_contents时,我没有收到任何内容!

有什么问题?

1 个答案:

答案 0 :(得分:0)

如果您的服务器没有配置问题,则此代码应该有效:

<?PHP
    $my_URL="http://138.201.123.244:8990/time/data.txt";

    $lines = file($my_URL);

    foreach ($lines as $line_num => $line) 
    {
            echo $line_num." ".$line;
    }
?>