我在一个网站上工作,从我的博客中提取新闻提要到网站。它在我的localhost中工作正常,但是当内容在线时,相同的代码不起作用。这是我的代码。
<?php
$i = 0; // counter
$j=0;
$des="";
$url = "http://lampsoftnepal.com/?feed=rss2"; // url to parse
$rss = simplexml_load_file($url); // XML parser
$dater=array();
$mylink=array();
$mytitle=array();
// RSS items loop
print '<h2><img style="vertical-align: middle;" src="'.$rss->channel->image->url.'" /> '.$rss->channel->title.'</h2>'; // channel title + img with src
foreach($rss->channel->item as $item) {
if ($i < 8) { // parse only 10 items
//print $item->pubDate;
$mylink[$i]=$item->link;
$mytitle[$i]=$item->title;
$dater[$i]=$item->pubDate;
}
$i++;
}
print '<a href="'.$item->link[0].'" target="_blank">'.$item->title[1].'</a><br />';
//print $dater[1];
?>
以下是我要打印日期的代码
<div class="list-group">
<div class="media list-group-item">
<a class="pull-left" href="news-events.html">
<img class="media-object" src="images/stree2.jpeg" alt="...">
</a>
<div class="media-body">
<a href="news-events.html">
<h4 class="list-group-item-heading">Somae's Story <span class="news-date"><?php echo $dater[0]; ?></span></h4>
<p class="list-group-item-text">Lorem ipsum doner mata coma, orem ipsum doner mata coma, Lorem ipsum.</p>
</a>
</div><!-- end of media-body -->
</div><!-- end of media list-group-item -->
</div><!-- end of list-group -->
</div><!-- end of side-box -->
</div>
答案 0 :(得分:0)
您的代码也适用于我。好像您的主机中未启用SimpleXML
。请通过创建示例页面进行如下检查。
<?php
echo phpinfo();
?>
您可以看到启用或禁用SimpleXML,或尝试使用以下代码。
<?php
if (function_exists('simplexml_load_file')) {
echo "simplexml_load_file function exists!<br />\n";
} else {
echo "simplexml_load_file function doesn't!.<br />\n";
}
?>