分页组件 PHP5+MSSQL

   2023-02-09 学习力0
核心提示:?class pagerecordset{private $cn;private $rs;private $totalpage = 0;private $totalrecord = 0;private $bpos = 1;private $epos = 1;private $row = null;private $firstpage = 1;private $prevpage = 1;private $nextpage = 1;private $lastpage = 1;pu
<?
class pagerecordset
{

	private $cn;
	private $rs;
	private $totalpage = 0;
	private $totalrecord = 0;
	private $bpos = 1;
	private $epos = 1;
	private $row = null;
	private $firstpage = 1;
	private $prevpage = 1;
	private $nextpage = 1;
	private $lastpage = 1;
	public $pageindex = 1;
	public $pagerecordcount = 10;

	public function __construct()
	{
		$ip = func_get_arg(0);
		$uid = func_get_arg(1);
		$pwd = func_get_arg(2);
		$this->cn = mssql_connect($ip , $uid , $pwd) or die("Connection creation fail!");
	}

	function __destruct()
	{
	}

	public function fetch($sql)
	{
		$this->rs = mssql_query($sql) or die("Query execution fail!");
		$this->totalrecord = mssql_num_rows($this->rs);
		if ($this->totalrecord == 0)
		{
		}
		else
		{
			$this->totalpage = ceil($this->totalrecord / $this->pagerecordcount);
			$this->firstpage = 1;
			$this->lastpage = $this->totalpage;
			$this->prevpage = $this->pageindex - 1;
			$this->nextpage = $this->pageindex + 1;
			if ($this->prevpage < 1)
			{
				$this->prevpage = $this->lastpage;
			}
			if ($this->nextpage > $this->lastpage)
			{
				$this->nextpage = $this->firstpage;
			}
			$this->bpos = ($this->pageindex - 1) * $this->pagerecordcount;
			$this->epos = $this->bpos + $this->pagerecordcount;
			if ($this->epos > $this->totalrecord)
			{
				$this->epos = $this->totalrecord - $this->bpos + $this->bpos;
			}
		}
		mssql_data_seek($this->rs , $this->bpos) or die("Head locate fail!");
	}

	public function read()
	{
		$returnval = false;
		if ($this->bpos < $this->epos)
		{
			$this->row = mssql_fetch_array($this->rs);
			$this->bpos++;
			$returnval = true;
		}
		return $returnval;
	}

	public function getfield($fieldname)
	{
		$returnval = "";
		$returnval = $this->row[$fieldname];
		return $returnval;
	}

	public function getposition()
	{
		$returnval = -1;
		$returnval = $this->bpos;
		return $returnval;
	}

	private function errmsg($funcbody , $errdescription)
	{
		$returnval = "";
		$returnval += "<div style='padding:5px; background:#ffd700; color:#000; font-family:Verdana; font-size:11px;'>";
		$returnval += " <div>Fundation:<strong>" + $funcbody + "</strong></div>";
		$returnval += " <div>Description:" + $errdescription + "</div>";
		$returnval += "</div>";
		return $returnval;
	}

	public function shownavigation($pagequery , $otherquery)
	{
		$html = "";
		$html .= "<div style=\"text-align:center; padding:5px;\">";
		$html .= " <div>";
		$html .= "  <a href=\"?" . $pagequery . "=" . $this->firstpage . $otherquery . "\" style=\"font-family:Webdings; font-size:12px;\">9</a>";
		$html .= "  <a href=\"?" . $pagequery . "=" . $this->prevpage . $otherquery . "\" style=\"font-family:Webdings; font-size:12px;\">7</a>";
		$html .= "  " . $this->pageindex;
		$html .= "  /";
		$html .= "  " . $this->lastpage;
		$html .= "  <a href=\"?" . $pagequery . "=" . $this->nextpage . $otherquery . "\" style=\"font-family:Webdings; font-size:12px;\">8</a>";
		$html .= "  <a href=\"?".$pagequery."=".$this->lastpage.$otherquery."\" style=\"font-family:Webdings; font-size:12px;\">:</a>";
		$html .= " </div>";
		$html .= "</div>";
		echo($html);
	}

	public function release()
	{
		mssql_free_result($this->rs) or die("Recordset destroy fail!");
		mssql_close($this->cn) or die("Connection close fail!");
	}

}
?>
 
反对 0举报 0 评论 0
 

免责声明:本文仅代表作者个人观点,与乐学笔记(本网)无关。其原创性以及文中陈述文字和内容未经本站证实,对本文以及其中全部或者部分内容、文字的真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
    本网站有部分内容均转载自其它媒体,转载目的在于传递更多信息,并不代表本网赞同其观点和对其真实性负责,若因作品内容、知识产权、版权和其他问题,请及时提供相关证明等材料并与我们留言联系,本网站将在规定时间内给予删除等相关处理.

  • php-fpm进程管理的三种模式 phpfpm子进程
    php-fpm进程管理的三种模式 phpfpm子进程
    php-fpm解读-进程管理的三种模式—程序媛大丽标明转载以示尊重 感谢原作者的分享。php-fpm进程管理一共有三种模式:ondemand、static、dynamic,我们可以在同一个fpm的master配置三种模式,看下图1。php-fpm的工作模式和nginx类似,都是一个master,多个worke
    03-08
  • nginx和php-fpm 是使用 tcp socket 还是 unix s
    tcp socket允许通过网络进程之间的通信,也可以通过loopback进行本地进程之间通信。unix socket允许在本地运行的进程之间进行通信。分析从上面的图片可以看,unix socket减少了不必要的tcp开销,而tcp需要经过loopback,还要申请临时端口和tcp相关资源。但是
    03-08
  • [PHP8] 我参加了PHP8工程师认证初学者考试beta考试
    [PHP8] 我参加了PHP8工程师认证初学者考试beta
    前几天,2022/08/05,PHP工程师认证机构PHP8 技术员认证初级考试宣布实施考试将于 2023 年春季开始。和 beta 测试完成于 2022/09/11所以我收到了。一般社团法人BOSS-CON JAPAN(代表理事:Tadashi Yoshimasa,地点:东京都世田谷区,以下简称“BOSS-CON JAPAN
    03-08
  • 将 PHP Insights 放入旧版 PJ 不是很好吗?谈论
    将 PHP Insights 放入旧版 PJ 不是很好吗?谈论
    介绍在最近的PHP系统开发中,感觉故事在理所当然包含静态分析工具的前提下进行。我的周围现有代码很脏,我很久以前安装了工具,但几乎没有检查已经观察到许多这样的案例。 (这是小说。而不是像 0 或 100 这样不允许单行错误的静态分析,一点一点,逐渐我想介
    03-08
  • PHP基于elasticsearch全文搜索引擎的开发 php使
    1.概述:全文搜索属于最常见的需求,开源的 Elasticsearch (以下简称 Elastic)是目前全文搜索引擎的首选。Elastic 的底层是开源库 Lucene。但是,你没法直接用 Lucene,必须自己写代码去调用它的接口。Elastic 是 Lucene 的封装,提供了 REST API 的操作接
    02-09
  • php视图操作
    一、视图的基本介绍         视图是虚拟的表。与包含数据的表不一样,视图只包含使用时动态检索数据的查询。        使用视图需要MySQL5及以后的版本支持。        下面是视图的一些常见应用:        重用SQL语句;        简化复杂的S
    02-09
  • php中图像处理的常用函数 php图形图像处理技术
    php中图像处理的常用函数 php图形图像处理技术
    1.imagecreate()函数imagecreate()函数是基于一个调色板的画布。?php $im = imagecreate(200,80);                //创建一个宽200,高80的画布。$white = imagecolorallocate($im,225,35,180);     //设置画布的背景颜色imagegif($im);
    02-09
  • PHP安全之webshell和后门检测
    PHP安全之webshell和后门检测
    基于PHP的应用面临着各种各样的攻击:XSS:对PHP的Web应用而言,跨站脚本是一个易受攻击的点。攻击者可以利用它盗取用户信息。你可以配置Apache,或是写更安全的PHP代码(验证所有用户输入)来防范XSS攻击SQL注入:这是PHP应用中,数据库层的易受攻击点。防范
    02-09
  • php使用时间戳保存时间的意义 PHP获取时间戳
    时间戳记录的是格林尼治时间,使用date格式化的时候会根据你程序设置的不同时区显示不同的时间。如果使用具体时间,则还需要进行多一步转换。
    02-09
  • PHP 获取提交表单数据方法
    PHP $_GET 和 $_POST变量是用来获取表单中的信息的,比如用户输入的信息。PHP表单操作在我们处理HTML表单和PHP表单时,我们要记住的重要一点是:HTML页面中的任何一个表单元素都可以自动的用于PHP脚本:表单举例: htmlbodyform action="welcome.php" method
    02-09
点击排行