我目前在我的“汽车类”中有一个显示汽车的方法:
static function getCars(){
$autos = DB::query("SELECT * FROM automoviles");
$retorno = array();
foreach($autos as $a){
$automovil = automovil::fromDB($a->marca, $a->modelo, $a->version, $a->year, $a->usuario_id, $a->kilometraje, $a->info,
$a->hits, $a->cilindrada, $a->estado, $a->color, $a->categoria, $a->precio, $a->idAutomovil);
array_push($retorno, $automovil);
}
return $retorno;
}
在我的index.php中,我调用了该函数
foreach(car::getCars() as $a){
这允许我以这种方式显示信息(当然在foreach中我有一个巨大的代码,我会显示详细信息。
有没有办法对这个东西实施分页,这样我每页可以处理8个汽车,而不是在同一页面上显示所有这些?
答案 0 :(得分:0)
您可以在函数中添加$limit
和$page
参数,以便从$limit
* {{1}开始返回最多$limit
个项目(或将其称为$page
)。您还需要添加一个函数来获取$offset
表的总行数。
automoviles
在index.php中执行以下操作:
static function getCars($page = 0, $limit = 8){
$offset = $limit * max(0, $page - 1);
//replace this with prepared statement
$autos = DB::query("SELECT * FROM automoviles LIMIT $offset, $limit");
$retorno = array();
foreach($autos as $a){
$automovil = automovil::fromDB($a->marca, $a->modelo, $a->version, $a->year, $a->usuario_id, $a->kilometraje, $a->info,
$a->hits, $a->cilindrada, $a->estado, $a->color, $a->categoria, $a->precio, $a->idAutomovil);
array_push($retorno, $automovil);
}
return $retorno;
}
static function getTotal()
{
//query to get total number of rows in automoviles table
}
并添加分页链接。
foreach(car::getCars((isset($_GET['page']) ? $_GET['page'] : 1)) as $a){
...
}