(.+?)(.+?)(.+?)/',$line,$arry); ++$a; $b = count($arry[0]); } return $arry; } このデータを利用してRSSを組み立てます" />

itoigawabass

itoigawaのブログ

MagpieRSS: RSS for PHP

2004-11-24

MagpieRSSを使用して情報サイト内のニュースを表示しています。

WebからRSSをphpコードで取得してMagpieRSSを利用しています。

データ取得部分
function data_read($url){
 $line = file_get_contents($url);
 $line = mb_convert_encoding ($line,"UTF-8","EUC-JP");
 $a = 0;
 $b = 0;
 while($b == 0){
  $date  = date('Ymd',mktime (0,0,0,date("m"),date("d") - $a,date("Y")));
preg_match_all('/(\?artist=\d+%'.$date.')" TARGET="_self">(.+?)<\/A><\/B>(.+?)
(.+?)
/',$line,$arry); ++$a; $b = count($arry[0]); } return $arry; }
このデータを利用してRSSを組み立てます

カテゴリー:blog
タグ: