update rss

This commit is contained in:
2018-12-02 19:41:18 +01:00
parent 260bc06370
commit cc09e8002b
3 changed files with 153 additions and 44 deletions

View File

@@ -0,0 +1,15 @@
<?php
class Settings
{
const DEBUG = true;
const TEXT_ENC = 'UTF-8';
}
require_once '../../class_management.php';
require_once '../../inc/rss.php';
$oRss = new Feed();
$oRss->loadRss('https://rarbgmirror.org/rssdd_magnet.php?categories=17;42;44;45;46;48');
$oRss->filterItems('title', '/'.date('Y').'/i');
echo $oRss->getFeed();