文件名称:php-paginator:php的分页类
文件大小:3KB
文件格式:ZIP
更新时间:2024-04-22 00:02:42
PHP
php-paginator php的分页类。 ==用法== <?php if (!function_exists('dict_get')) { function dict_get($dict, $key, $default=null) { return (array_key_exists($key, $dict) ? $dict[$key] : $default); } } $current_page_number = dict_get($_GET, 'page', 1); $per_page = dict_get($_GET, 'per_page', 8); $offset = ($current_page_number-1)*$per_page; require_once('paginator.php'); $paginator = new Pagin
【文件预览】:
php-paginator-main
----paginator.php(2KB)
----LICENSE(1KB)
----README.md(589B)
----example()
--------pagination.php(1KB)