コード例 #1
0
ファイル: TwitterLoop.php プロジェクト: nicolasleon/Twitter
 public function buildArray()
 {
     $twitter = new Twitter();
     $tweets = $twitter->getTweets();
     $start = (int) $this->getStart();
     $count = (int) $this->getCount();
     return array_slice($tweets, $start, $count);
 }