3

I'm trying to show contents of two websites in one another , someone suggest me to use RSS reader but my question is :

is there anything else i could try to show the contents , beside using rss !?

i thought i can connect to the database of another website , but that didnt work /

thanks in advance

4

2 回答 2

4

一些虚拟主机已禁用“读取文件”功能。但是您可以使用“file_get_contents”功能。

$home = file_get_contents('example.com');
echo $home;
于 2011-08-03T03:19:52.007 回答
2

任何可以获取远程 URL 的 PHP 函数都可以帮助您。这可以像做一样简单

readfile('http://example.com'); // outputs contents of URL

如果您只需要抓取URL 的某些内容或想要对内容进行后处理,请考虑使用DOM。如果您尝试解析特定的 XML 格式(如 RSS),请使用专门针对该格式的解析器。如果没有该格式的解析器,请使用XSLT将其转换为 HTML。

至于数据库访问,为什么不询问远程站点和数据库的所有者是否以及如何访问它。

就像您已经建议的问题下方的评论一样,如果您可以更具体地了解问题,我们可以更具体地了解解决方案。

于 2010-04-29T08:04:31.627 回答