国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

Home php教程 php手冊(cè) PHP ajax 分頁(yè)類代碼

PHP ajax 分頁(yè)類代碼

Jun 13, 2016 pm 12:26 PM
ajax http php sql code Pagination Function add deal with kind


//本分頁(yè)類不處理SQL;
//大大的加快了分頁(yè)功能
//http://blog.csdn.net/fkedwgwy
//瀟湘博客--瀟湘
/**
演示
require_once('../libs/classes/page.class.php');
$page=new page(array('total'=>1000,'perpage'=>20));
echo 'mode:1
'.$page->show();
echo '


mode:2
'.$page->show(2);
echo '
mode:3
'.$page->show(3);
echo '
mode:4
'.$page->show(4);
echo '
開(kāi)始AJAX模式:';
$ajaxpage=new page(array('total'=>1000,'perpage'=>20,'ajax'=>'ajax_page','page_name'=>'test'));
echo 'mode:1
'.$ajaxpage->show();
*/
class Zend_Page
{
/**
* config ,public
*/
var $page_name="page";//page標(biāo)簽,用來(lái)控制url頁(yè)。比如說(shuō)xxx.php?PB_page=2中的PB_page
var $next_page='>';//下一頁(yè)
var $pre_page='var $first_page='First';//首頁(yè)
var $last_page='Last';//尾頁(yè)
var $pre_bar='var $next_bar='>>';//下一分頁(yè)條
var $format_left='';
var $format_right='';
var $is_ajax=false;//是否支持AJAX分頁(yè)模式
var $next_ten_page=">>>";
var $per_ten_page="
/**
* private
*
*/
var $pagebarnum=10;//控制記錄條的個(gè)數(shù)。
var $totalpage=0;//總頁(yè)數(shù)
var $ajax_action_name='';//AJAX動(dòng)作名
var $nowindex=1;//當(dāng)前頁(yè)
var $url="";//url地址頭
var $offset=0;
var $total='';

/**
* constructor構(gòu)造函數(shù)
*
* @param array $array['total'],$array['perpage'],$array['nowindex'],$array['url'],$array['ajax']...
*/
function Zend_Page($array)
{
if(is_array($array)){
if(!array_key_exists('total',$array))$this->error(__FUNCTION__,'need a param of total');
$total=intval($array['total']);
$perpage=(array_key_exists('perpage',$array))?intval($array['perpage']):10;
$nowindex=(array_key_exists('nowindex',$array))?intval($array['nowindex']):'';
$url=(array_key_exists('url',$array))?$array['url']:'';
}else{
$total=$array;
$perpage=10;
$nowindex='';
$url='';
}
if((!is_int($total))||($totalerror(__FUNCTION__,$total.' is not a positive integer!');
if((!is_int($perpage))||($perpageerror(__FUNCTION__,$perpage.' is not a positive integer!');
if(!empty($array['page_name']))$this->set('page_name',$array['page_name']);//設(shè)置pagename
$this->_set_nowindex($nowindex);//設(shè)置當(dāng)前頁(yè)
$this->_set_url($url);//設(shè)置鏈接地址
$this->totalpage=ceil($total/$perpage);
$this->total=$total;
$this->offset=($this->nowindex-1)*$perpage;
if(!empty($array['ajax']))$this->open_ajax($array['ajax']);//打開(kāi)AJAX模式
}
/**
* 設(shè)定類中指定變量名的值,如果改變量不屬于這個(gè)類,將throw一個(gè)exception
*
* @param string $var
* @param string $value
*/
function set($var,$value)
{
if(in_array($var,get_object_vars($this)))
$this->$var=$value;
else {
$this->error(__FUNCTION__,$var." does not belong to PB_Page!");
}

}
/**
* 打開(kāi)倒AJAX模式
*
* @param string $action 默認(rèn)ajax觸發(fā)的動(dòng)作。
*/
function open_ajax($action)
{
$this->is_ajax=true;
$this->ajax_action_name=$action;
}
/**
* 獲取顯示"下一頁(yè)"的代碼
*
* @param string $style
* @return string
*/
function next_page($style='')
{
if($this->nowindextotalpage){
return $this->_get_link($this->_get_url($this->nowindex+1),$this->next_page,$style);
}
return ''.$this->next_page.'';
}

/**
* 獲取顯示“上一頁(yè)”的代碼
*
* @param string $style
* @return string
*/
function pre_page($style='')
{
if($this->nowindex>1){
return $this->_get_link($this->_get_url($this->nowindex-1),$this->pre_page,$style);
}
return ''.$this->pre_page.'';
}

/**
* 獲取顯示“上十頁(yè)”的代碼
*
* @param string $style
* @return string
*/
function pre_ten_page($style='')
{
if(intval($this->nowindex/10)+1>1){
return $this->_get_link($this->_get_url(intval($this->nowindex/10)*10-5),$this->pre_ten_page,$style);
}
return ''.$this->pre_ten_page.'';
}

/**
* 獲取顯示"下十頁(yè)"的代碼
*
* @param string $style
* @return string
*/
function next_ten_page($style='')
{
if(intval($this->nowindex/10) totalpage/10)){
return $this->_get_link($this->_get_url((intval($this->nowindex/10)+1)*10+5),$this->next_ten_page,$style);
}
return ''.$this->next_ten_page.'';
}

/**
* 獲取顯示“首頁(yè)”的代碼
*
* @return string
*/
function first_page($style='')
{
if($this->nowindex==1){
return ''.$this->first_page.'';
}
return $this->_get_link($this->_get_url(1),$this->first_page,$style);
}

/**
* 獲取顯示“尾頁(yè)”的代碼
*
* @return string
*/
function last_page($style='')
{
if($this->nowindex==$this->totalpage){
return ''.$this->last_page.'';
}
return $this->_get_link($this->_get_url($this->totalpage),$this->last_page,$style);
}

function nowbar($style='',$nowindex_style='')
{
$plus=ceil($this->pagebarnum/2);
if($this->pagebarnum-$plus+$this->nowindex>$this->totalpage)$plus=($this->pagebarnum-$this->totalpage+$this->nowindex);
$begin=$this->nowindex-$plus+1;
$begin=($begin>=1)?$begin:1;
$return='';
for($i=$begin;$ipagebarnum;$i++)
{
if($itotalpage){
if($i!=$this->nowindex)
$return.=$this->_get_text($this->_get_link($this->_get_url($i),$i,$style));
else
$return.=$this->_get_text(''.$i.'');
}else{
break;
}
$return.="\n";
}
unset($begin);
return $return;
}
/**
* 獲取顯示跳轉(zhuǎn)按鈕的代碼
*
* @return string
*/
function select()
{
$return='';
return $return;
}

/**
* 獲取mysql 語(yǔ)句中l(wèi)imit需要的值
*
* @return string
*/
function offset()
{
return $this->offset;
}

/**
* 控制分頁(yè)顯示風(fēng)格(你可以增加相應(yīng)的風(fēng)格)
*
* @param int $mode
* @return string
*/
function show($mode=1,$url='')
{
switch ($mode)
{
case '1':
$this->next_page='下一頁(yè)';
$this->pre_page='上一頁(yè)';
return $this->pre_page().$this->nowbar().$this->next_page().'第'.$this->select().'頁(yè)';
break;
case '2':
$this->next_page='下一頁(yè)';
$this->pre_page='上一頁(yè)';
$this->first_page='首頁(yè)';
$this->last_page='尾頁(yè)';
return $this->first_page().$this->pre_page().'[第'.$this->nowindex.'頁(yè)]'.$this->next_page().$this->last_page().'第'.$this->select().'頁(yè)';
break;
case '3':
$this->next_page='下一頁(yè)';
$this->pre_page='上一頁(yè)';
$this->first_page='首頁(yè)';
$this->last_page='尾頁(yè)';
return $this->first_page().$this->pre_page().$this->next_page().$this->last_page();
break;
case '4':
$this->next_page='next';
$this->pre_page='last';
return $this->pre_page().$this->nowbar().$this->next_page();
break;
case '5':
return $this->pre_bar().$this->pre_page().$this->nowbar().$this->next_page().$this->next_bar();
break;
case '6':
//啟用了“上一頁(yè)”,“下一頁(yè)”,“最后一頁(yè)”??筛鶕?jù)情況啟用“第一頁(yè)”。
//$this->first_page='PHP ajax 分頁(yè)類代碼';
$this->pre_page='PHP ajax 分頁(yè)類代碼';
$this->next_page='PHP ajax 分頁(yè)類代碼';
$this->last_page='最后一頁(yè)';
//return "".$this->select().""."頁(yè)"."".$this->first_page().""."".$this->pre_page().""."".$this->next_page().""."".$this->last_page()."";
return "共有[".$this->total."]件商品????".$this->nowindex."/".$this->totalpage."頁(yè)"."".$this->pre_page()."??".$this->next_page().""."".$this->last_page()."??".$this->select()."??頁(yè)??";
break;
case '7':
$this->next_page='PHP ajax 分頁(yè)類代碼';
$this->pre_page='PHP ajax 分頁(yè)類代碼';
$this->first_page='PHP ajax 分頁(yè)類代碼';
$this->last_page='PHP ajax 分頁(yè)類代碼';
if($this->totalpage==0)
{$this->nowindex=0;}
return $this->first_page()."??".$this->pre_page()."??".$this->next_page()."??".$this->last_page()."??".$this->select();
break;
case '8':
//啟用了“上一頁(yè)”,“下一頁(yè)”,“最后一頁(yè)”。可根據(jù)情況啟用“第一頁(yè)”。
//$this->first_page='PHP ajax 分頁(yè)類代碼';
$this->pre_page='PHP ajax 分頁(yè)類代碼';
$this->next_page='PHP ajax 分頁(yè)類代碼';
$this->last_page='最后一頁(yè)';
if($this->totalpage==0)
{$this->nowindex=0;}
//return " ".$this->select().""."頁(yè)"."".$this->first_page().""."".$this->pre_page().""."".$this->next_page().""."".$this->last_page()."";
return "共有[".$this->total."]條信息????".$this->nowindex."/".$this->totalpage."頁(yè)"."".$this->pre_page()."??".$this->next_page().""."".$this->last_page()."??".$this->select()."??頁(yè)??";
break;
}

}
/*----------------private function (私有方法)-----------------------------------------------------------*/
/**
* 設(shè)置url頭地址
* @param: String $url
* @return boolean
*/
function _set_url($url="")
{
if(!empty($url)){
//手動(dòng)設(shè)置
$this->url=$url.((stristr($url,'?'))?'&':'?').$this->page_name."=";
}else{
//自動(dòng)獲取
if(empty($_SERVER['QUERY_STRING'])){
//不存在QUERY_STRING時(shí)
$this->url=$_SERVER['REQUEST_URI']."?".$this->page_name."=";
}else{
//
if(stristr($_SERVER['QUERY_STRING'],$this->page_name.'=')){
//地址存在頁(yè)面參數(shù)
$this->url=str_replace($this->page_name.'='.$this->nowindex,'',$_SERVER['REQUEST_URI']);
$last=$this->url[strlen($this->url)-1];
if($last=='?'||$last=='&'){
$this->url.=$this->page_name."=";
}else{
$this->url.='&'.$this->page_name."=";
}
}else{
//
$this->url=$_SERVER['REQUEST_URI'].'&'.$this->page_name.'=';
}//end if
}//end if
}//end if
}

/**
* 設(shè)置當(dāng)前頁(yè)面
*
*/
function _set_nowindex($nowindex)
{
if(empty($nowindex)){
//系統(tǒng)獲取

if(isset($_GET[$this->page_name])){
$this->nowindex=intval($_GET[$this->page_name]);
}
}else{
//手動(dòng)設(shè)置
$this->nowindex=intval($nowindex);
}
}

/**
* 為指定的頁(yè)面返回地址值
*
* @param int $pageno
* @return string $url
*/
function _get_url($pageno=1)
{
return $this->url.$pageno;
}

/**
* 獲取分頁(yè)顯示文字,比如說(shuō)默認(rèn)情況下_get_text('1')將返回[1]
*
* @param String $str
* @return string $url
*/
function _get_text($str)
{
return $this->format_left.$str.$this->format_right;
}

/**
* 獲取鏈接地址
*/
function _get_link($url,$text,$style=''){
$style=(empty($style))?'':'class="'.$style.'"';
if($this->is_ajax){
//如果是使用AJAX模式
return ''.$text.'';
}else{
return ''.$text.'';
}
}
/**
* 出錯(cuò)處理方式
*/
function error($function,$errormsg)
{
die('Error in file '.__FILE__.' ,Function '.$function.'() :'.$errormsg);
}
}
?>
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

Hot AI Tools

Undress AI Tool

Undress AI Tool

Undress images for free

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to set PHP time zone? How to set PHP time zone? Jun 25, 2025 am 01:00 AM

TosettherighttimezoneinPHP,usedate_default_timezone_set()functionatthestartofyourscriptwithavalididentifiersuchas'America/New_York'.1.Usedate_default_timezone_set()beforeanydate/timefunctions.2.Alternatively,configurethephp.inifilebysettingdate.timez

What are the best practices for writing clean and maintainable PHP code? What are the best practices for writing clean and maintainable PHP code? Jun 24, 2025 am 12:53 AM

The key to writing clean and easy-to-maintain PHP code lies in clear naming, following standards, reasonable structure, making good use of comments and testability. 1. Use clear variables, functions and class names, such as $userData and calculateTotalPrice(); 2. Follow the PSR-12 standard unified code style; 3. Split the code structure according to responsibilities, and organize it using MVC or Laravel-style catalogs; 4. Avoid noodles-style code and split the logic into small functions with a single responsibility; 5. Add comments at key points and write interface documents to clarify parameters, return values ??and exceptions; 6. Improve testability, adopt dependency injection, reduce global state and static methods. These practices improve code quality, collaboration efficiency and post-maintenance ease.

How do I execute SQL queries using PHP? How do I execute SQL queries using PHP? Jun 24, 2025 am 12:54 AM

Yes,youcanrunSQLqueriesusingPHP,andtheprocessinvolveschoosingadatabaseextension,connectingtothedatabase,executingqueriessafely,andclosingconnectionswhendone.Todothis,firstchoosebetweenMySQLiorPDO,withPDObeingmoreflexibleduetosupportingmultipledatabas

How do I use page caching in PHP? How do I use page caching in PHP? Jun 24, 2025 am 12:50 AM

PHP page caching improves website performance by reducing server load and speeding up page loading. 1. Basic file cache avoids repeated generation of dynamic content by generating static HTML files and providing services during the validity period; 2. Enable OPcache to compile PHP scripts into bytecode and store them in memory, improving execution efficiency; 3. For dynamic pages with parameters, they should be cached separately according to URL parameters, and avoid cached user-specific content; 4. Lightweight cache libraries such as PHPFastCache can be used to simplify development and support multiple storage drivers. Combining these methods can effectively optimize the caching strategy of PHP projects.

How to quickly test PHP code snippets? How to quickly test PHP code snippets? Jun 25, 2025 am 12:58 AM

ToquicklytestaPHPcodesnippet,useanonlinePHPsandboxlike3v4l.orgorPHPize.onlineforinstantexecutionwithoutsetup;runcodelocallywithPHPCLIbycreatinga.phpfileandexecutingitviatheterminal;optionallyusephp-rforone-liners;setupalocaldevelopmentenvironmentwith

How to upgrade PHP version? How to upgrade PHP version? Jun 27, 2025 am 02:14 AM

Upgrading the PHP version is actually not difficult, but the key lies in the operation steps and precautions. The following are the specific methods: 1. Confirm the current PHP version and running environment, use the command line or phpinfo.php file to view; 2. Select the suitable new version and install it. It is recommended to install it with 8.2 or 8.1. Linux users use package manager, and macOS users use Homebrew; 3. Migrate configuration files and extensions, update php.ini and install necessary extensions; 4. Test whether the website is running normally, check the error log to ensure that there is no compatibility problem. Follow these steps and you can successfully complete the upgrade in most situations.

How do I prevent cross-site request forgery (CSRF) attacks in PHP? How do I prevent cross-site request forgery (CSRF) attacks in PHP? Jun 28, 2025 am 02:25 AM

TopreventCSRFattacksinPHP,implementanti-CSRFtokens.1)Generateandstoresecuretokensusingrandom_bytes()orbin2hex(random_bytes(32)),savethemin$_SESSION,andincludetheminformsashiddeninputs.2)ValidatetokensonsubmissionbystrictlycomparingthePOSTtokenwiththe

PHP beginner guide: Detailed explanation of local environment configuration PHP beginner guide: Detailed explanation of local environment configuration Jun 27, 2025 am 02:09 AM

To set up a PHP development environment, you need to select the appropriate tools and install the configuration correctly. ①The most basic PHP local environment requires three components: the web server (Apache or Nginx), the PHP itself and the database (such as MySQL/MariaDB); ② It is recommended that beginners use integration packages such as XAMPP or MAMP, which simplify the installation process. XAMPP is suitable for Windows and macOS. After installation, the project files are placed in the htdocs directory and accessed through localhost; ③MAMP is suitable for Mac users and supports convenient switching of PHP versions, but the free version has limited functions; ④ Advanced users can manually install them by Homebrew, in macOS/Linux systems

See all articles