rss from fnn news

%e7%84%a1%e9%a1%8c

1
2
3
4
5
6
7
8
9
<?php
$xml = simplexml_load_file('http://rss.fnn-news.com/fnn_news.xml');
echo "<ul>";
foreach($xml->channel->item as $entry){
  $entrydate = date ("Y.m.d",strtotime ($entry->pubDate));
  echo "<li>$entrydate<a href='$entry->link'>$entry->title</a></li>";
}
echo "</ul>";
?>

画像付き
reference:preg_match
Perform a regular expression match

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?php
$xml = simplexml_load_file('http://rss.fnn-news.com/fnn_news.xml');
 
foreach($xml->channel->item as $entry){
echo "<article>";
 
// sitelink
$site_title = $xml->channel->title;
$site_link = $xml->channel->link;
$site_titlelink = "<a href='$site_link'>$site_title</a>";
echo $site_titlelink;
 
// date
$date = date ("Y.m.d",strtotime($entry->pubDate));
echo $date;
 
//article link
$titlelink = "<a href='$entry->link'>$entry->title</a>";
echo $titlelink;
 
// picture
preg_match('/<img.*>/i', $entry->description, $entryimg);
echo $entryimg[0];
 
echo "</article>";
}
?>