luochaolun / page
simple php fenye
Installs: 29
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/luochaolun/page
Requires
- php: >=5.4
This package is not auto-updated.
Last update: 2022-01-08 13:50:33 UTC
README
PHP简单分页.
安装方法:
composer.phar require luochaolun/page dev-master
使用方法: require 'vendor/autoload.php';
use LclTools\Page;
$count = 574;
$page = new Page($count, 25);
$limit = $page->get('limit'); //[0,10] 数组形式,方便Medoo中使用
$sql = "SELECT * FROM 表名 LIMIT " . implode(',', $limit);
echo $sql;