Skip to content

Commit

Permalink
Add all together
Browse files Browse the repository at this point in the history
  • Loading branch information
EragonJ committed Nov 14, 2010
1 parent 5cbc423 commit 684b65e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
9 changes: 6 additions & 3 deletions README.mkd
Expand Up @@ -298,10 +298,13 @@ toHTML()
Usage
=====

include_once("RssParser.php");
<?php
include_once("RssParser.php");

$s = new RssParser(array("http://www.plurk.com/EragonJ.xml","http://www.plurk.com/buweichiu.xml"));
print_r($s->exec()->sortSeeds()->toHTML());
$plurkUsers = array("http://www.plurk.com/EragonJ.xml","http://www.plurk.com/buweichiu.xml","http://www.plurk.com/BlackACE.xml");
$rss = new RssParser($plurkUsers);
print_r($rss->exec()->sortSeeds()->toHTML());
?>

Author
======
Expand Down
6 changes: 3 additions & 3 deletions demo.php
@@ -1,7 +1,7 @@
<?php
include_once("RssParser.php");

$s = new RssParser(array("http://www.plurk.com/EragonJ.xml","http://www.plurk.com/buweichiu.xml"));
print_r($s->exec()->sortSeeds()->toHTML());

$plurkUsers = array("http://www.plurk.com/EragonJ.xml","http://www.plurk.com/buweichiu.xml","http://www.plurk.com/BlackACE.xml");
$rss = new RssParser($plurkUsers);
print_r($rss->exec()->sortSeeds()->toHTML());
?>

0 comments on commit 684b65e

Please sign in to comment.