Filters Tweets which this object contains.
filter( Tuitter_Filter_Interface $filter )
Tuitter_Filter object.
You can use the prepared filters, or you can create custome filters by yourself.
$tweets = $tuitter->getHomeTL();// 任意のフィルタをロードし、適用する Tuitter::load('Filter/HashTag.php'); $tweets->filter(new Tuitter_Filter_HashTag('hoge'));// フィルタされたものだけが残っている foreach($tweets as $tweet){ echo $tweet->text."\n"; }