我正在尝试找到一种方法来使用 PHP 加载我的最新推文。在这个 URL 上,我将“Twitter.xml”更改为我的用户名——“.xml”。 https://twitter.com/users/show/Twitter.xml
最新的推文显示在第 49 行,但我不认为 PHP 可以读取远程文件...我希望它显示第 49 行,但是如何将它与在远程服务器上查找文件结合起来?
谢谢
我正在尝试找到一种方法来使用 PHP 加载我的最新推文。在这个 URL 上,我将“Twitter.xml”更改为我的用户名——“.xml”。 https://twitter.com/users/show/Twitter.xml
最新的推文显示在第 49 行,但我不认为 PHP 可以读取远程文件...我希望它显示第 49 行,但是如何将它与在远程服务器上查找文件结合起来?
谢谢
在 PHP 中,您可以使用它file_get_contents()
来获取该 url 的内容。例如
$xml = file_get_contents('https://twitter.com/users/show/Twitter.xml');
这仅在配置设置为allow_url_fopen
On时才有效
Use curl to fetch a remote resource.
http://www.php.net/manual/en/curl.examples-basic.php http://www.php.net/manual/en/function.curl-init.php
Then, since it's xml, I would convert it to a native PHP object, using SimpleXML