Exemplo n.º 1
0
 function actionSelect()
 {
     if ($_SERVER['REQUEST_METHOD'] == 'GET') {
         if ($_GET['type'] == 'rss') {
             $obj = new Rss();
             $obj->getReport("http://lenta.ru/rss/last24");
             $obj->parser();
         } elseif ($_GET['type'] == 'twitter') {
             $obj = new Twitter();
             $obj->getReport("https://twitter.com/_nezed");
         }
     }
 }