|
|
@ -22,6 +22,8 @@ $db = new HabrRSSDb('habr_db.dat'); |
|
|
|
foreach ($rss->channel->item as $item) { |
|
|
|
foreach ($rss->channel->item as $item) { |
|
|
|
$link = (string)$item->link; |
|
|
|
$link = (string)$item->link; |
|
|
|
$title = (string)$item->title; |
|
|
|
$title = (string)$item->title; |
|
|
|
|
|
|
|
// Note: habrahabr.ru does both special chars encoding and CDATA wrap |
|
|
|
|
|
|
|
$title = htmlspecialchars_decode($title); |
|
|
|
|
|
|
|
|
|
|
|
// get post id from link |
|
|
|
// get post id from link |
|
|
|
$id = (int)preg_replace('#[^\d]#', '', $link); |
|
|
|
$id = (int)preg_replace('#[^\d]#', '', $link); |
|
|
|