使用PHP读取特定的远程行

时间:2012-10-06 01:39:44

标签: php twitter remote-server

我正试图找到一种用PHP加载我最新推文的方法。 在此URL,我将“Twitter.xml”更改为我的用户名 - “。xml”。 https://twitter.com/users/show/Twitter.xml

最新的推文显示在第49行,但我不认为PHP可以读取远程文件...我希望它显示第49行,但我如何将它与在远程服务器上查找文件结合起来?

由于

2 个答案:

答案 0 :(得分:0)

在PHP中,您可以使用file_get_contents()来获取该网址的内容。例如

$xml = file_get_contents('https://twitter.com/users/show/Twitter.xml');

仅当allow_url_fopen的配置设置设为开启

时,此功能才有效

答案 1 :(得分:0)

使用curl获取远程资源。

http://www.php.net/manual/en/curl.examples-basic.php http://www.php.net/manual/en/function.curl-init.php

然后,因为它是xml,我会使用SimpleXML将它转换为本机PHP对象

http://www.php.net/manual/en/simplexml.examples-basic.php