示例#1
0
 function getReplies($offset = 0, $limit = NOTICES_PER_PAGE, $since_id = 0, $before_id = 0)
 {
     $ids = Reply::stream($this->id, $offset, $limit, $since_id, $before_id);
     return Notice::getStreamByIds($ids);
 }
示例#2
0
文件: User.php 项目: Grasia/bolotweet
 function getReplies($offset = 0, $limit = NOTICES_PER_PAGE, $since_id = 0, $before_id = 0)
 {
     return Reply::stream($this->id, $offset, $limit, $since_id, $before_id);
 }