Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我以前从未使用过 RSS。
我试图用它来打印它,<iframe>但这是一个愚蠢的尝试。
<iframe>
我非常熟悉 PHP/CSS/HTML,我想知道如何从这个 RSS 链接打印 HTML/PHP 页面中的 RSS 信息:
http://grabo.bg/rss/?city=&affid=16090
我需要任何解析器或其他东西吗?请告诉我如何以 html 形式打印此内容?
关于RSS,我必须知道什么?
它只是xml。您所要做的就是卷曲该页面或:
$feed = file_get_contents('http://grabo.bg/rss/?city=&affid=16090');
然后说:
$rss = simplexml_load_string($feed);
然后说
foreach($rss as $r){ //in your case echo $r->title; echo $r->content; }