日期:2014-05-17 浏览次数:20437 次
public function execute(PwThreadDataSource $ds) {
$this->_ds = $ds;
abstract class PwThreadDataSource {
protected $urlArgs = array();
/**
* 获取帖子统计数
*
* @return int
*/
abstract public function getTotal();
/**
* 获取帖子
*
* @param int $limit 获取条目
* @param int $offset 帖子起始偏移量
* @return array
*/
abstract public function getData($limit, $offset);