smarty简单分页的实现方法_php实例

WBOY
Release: 2016-06-07 17:16:00
Original
850 people have browsed it

本文实例讲述了smarty简单分页的实现方法,分享给大家供大家参考。具体实现方法如下:

以下是模板中的smarty代码,用smarty简单的代入相关的变量就行了,非常简单,但是在php代码中还要传入page这个参数。我觉得这样分挺好,非常简单。我越来越喜欢用smarty了。
 
Php代码如下:

复制代码 代码如下:
{if $pageCount > 1} 
{foreach  item=i from=$pagerList} 
  {if $pageNum eq $i} 
  {$i}   
  {else} 
{$i}   
{/if} 
{/foreach} 
{if $pageNum eq 1} 
上一页   
{else} 
上一页   
{/if} 
{if $pageNum eq $pageCount } 
下一页   
{else} 
下一页   
{/if} 
{if $pageNum eq 1} 
首页   
{else} 
首页   
{/if} 
          
{if $pageNum eq $pageCount} 
最后一页   
{else} 
最后一页   
{/if} 
{/if} 
(共{$pageCount}页)
 

这里只是给出一个思想,其实分页没有那么复杂。

希望本文所述对大家的PHP程序设计有所帮助。

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template