library pagination
简单分页组件
aweitian/pagination
简单分页组件
- Wednesday, July 11, 2018
- by awei.tian
- Repository
- 1 Watchers
- 0 Stars
- 41 Installations
- PHP
- 1 Dependents
- 0 Suggesters
- 0 Forks
- 0 Open issues
- 5 Versions
- 52 % Grown
$page = new Pagination(110, 2, 7, 5);
getCurPageNum()} / {$page->getMaxPage()} ";?>
hasPre()):?>
<a class="pre" href='?page=<?php print $page->getPre()?>'>
<< <?php print $page->getPre()?>
</a>
getPageBtnLen(); $i++) :?>
<a href='?page=<?php print $page->getStartPage() + $i?>' class='<?php if($page->getStartPage() + $i == $page->getCurPageNum()):?>current<?php endif?>'>
<?php print $page->getStartPage() + $i?>
</a>
hasNext()):?>
<a class="next" href='?page=<?php print $page->getNext()?>'>
>> <?php print $page->getNext()?>
</a>
ellipsis
hasEllipsis()): ?>
<?php $i = 1; ?>
<a<?php if ($i == $page->getCurrent()): ?> class="current"<?php endif ?> href="?<?php $tmp_get = $_GET;
$tmp_get['page'] = $i;
print http_build_query($tmp_get) ?>">
<?php print $i ?>
</a>
<?php if ($page->hasPreEllipsis()): ?>
<a>...</a>
<?php endif ?>
<?php for ($i = $page->getStartNum(); $i <= $page->getRearNum(); $i++): ?>
<a<?php if ($i == $page->getCurrent()): ?> class="current"<?php endif ?> href="?<?php $tmp_get = $_GET;
$tmp_get['page'] = $i;
print http_build_query($tmp_get) ?>">
<?php print $i ?>
</a>
<?php endfor ?>
<?php if ($page->hasRearEllipsis()): ?>
<a>...</a>
<?php endif ?>
<?php $i = $page->getTotal(); ?>
<a<?php if ($i == $page->getCurrent()): ?> class="current"<?php endif ?> href="?<?php $tmp_get = $_GET;
$tmp_get['page'] = $i;
print http_build_query($tmp_get) ?>">
<?php print $i ?>
</a>
<?php for ($i = 1; $i <= $page->getTotal(); $i++): ?>
<a<?php if ($i == $page->getCurrent()): ?> class="current"<?php endif ?> href="?<?php $tmp_get = $_GET;
$tmp_get['page'] = $i;
print http_build_query($tmp_get) ?>">
<?php print $i ?>
</a>
<?php endfor ?>