站内搜索
分类列表
本类阅读排行
本类推荐文章
- 配置整合Win+Apache+PHP+MySQL+Tc...
- 动态网页制作PHP常用的正则表达式
- PHP实例:上传多个图片并校验的代...
- PHP5中新增加的日期(date)函数的常...
- PHP实例:实现给上传图片加水印图案
- PHP 开发中的中文编码问题
- 用PHP程序直接调用文本文件内容实...
- PHP初学者:配置Apache服务器并且...
- 详细学习PHP中对文件和目录的操作...
- 确保PHP安全,不能违反的四条安全...
- 怎样在PHP 中运用 SimpleXML 处理...
- PHP5.2+APACHE2.2+BugFree1.0的安...
- PHP正式进入IIS微软与Zend携手推动...
- PHP5中PDO的简单使用
- Web服务器IIS6的PHP最佳配置方法
广告
一个分页导航类
作者: 来源: 点击: 日期:2007-6-20 0:35:54
<?php
// +----------------------------------------------------------------------+
// PHP Version 4
// +----------------------------------------------------------------------+
// Copyright (c) 1997-2002 The PHP Group
// +----------------------------------------------------------------------+
// This source file is subject to version 2.02 of the PHP license,
// that is bundled with this package in the file LICENSE, and is
// available at through the world-wide-web at
// http://www.php.net/license/2_02.txt.
// If you did not receive a copy of the PHP license and are unable to
// obtain it through the world-wide-web, please send a note to
// license@php.net so we can mail you a copy immediately.
// +----------------------------------------------------------------------+
// Authors: Richard Heyes <richard@phpguru.org>
// +----------------------------------------------------------------------+
/**
* Pager class
*
* Handles paging a set of data. For usage see the example.php provided.
*
*/
class Pager {
/**
* Current page
* @var integer
一个分页导航类 评论
