Jeden způsob:
PHP:
$start = ($this->pageNo - 1) * $pageSize;
$page = array_slice($data, $start, $this->pageSize);
Jiný způsob:
Jeden způsob:
PHP:
$start = ($this->pageNo - 1) * $pageSize;
$page = array_slice($data, $start, $this->pageSize);
Jiný způsob: