PHP - 显示来自不同php文件的结果

时间:2014-11-30 20:53:49

标签: php simplepie

我有以下内容从各个网站获取链接:

    <?php

       class news{

         public static function data(){
        $feed = new SimplePie();
        $feed->init();
        $feed->set_feed_url(array(

        'www.bbc.co.uk',
        'www.itv.com/news',
        'www.cnn.com'

        ));

        $feed->set_favicon_handler('handler_image.php');
        $feed->init();
        $feed->handle_content_type();

        $arrFeedStack = array();
        foreach ($feed->get_items() as $property):
        $arrFeedStack[$property->get_title()] = $property->get_description();
        endforeach;

            foreach ($arrFeedStack as $item) {
            $property->get_title(); // The title for the l
            $property->get_DATE('g:i');
            //  echo $item . <br />;


        }
     }

   }        
?>

现在我只想尝试从此返回任何内容以显示在我的index.php中。 有没有人知道我该怎么做?

1 个答案:

答案 0 :(得分:0)

只需按data()方法返回您的数据,然后按以下方式获取:

require_once('path/to/yourClassFileName.php');
$data=news::data();