我正试图找到一种用PHP加载我最新推文的方法。 在此URL,我将“Twitter.xml”更改为我的用户名 - “。xml”。 https://twitter.com/users/show/Twitter.xml
最新的推文显示在第49行,但我不认为PHP可以读取远程文件...我希望它显示第49行,但我如何将它与在远程服务器上查找文件结合起来?
由于
答案 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对象