search
HomeBackend DevelopmentPHP Tutorialci分页类,怎么把显示的数字(上页、下页、首页、末页)换成图片显示呢?

ci 分页

ci分页类,怎么把显示的数字(上页、下页、首页、末页)换成图片显示呢?
例如这种形式

回复讨论(解决方案)

找到文字,换成 img 标记

找到文字,换成 img 标记

具体怎么改,请指点指点!!!<?php  if ( ! defined('BASEPATH')) exit('No direct script access allowed');/** * CodeIgniter * * An open source application development framework for PHP 5.1.6 or newer * * @package		CodeIgniter * @author		ExpressionEngine Dev Team * @copyright	Copyright (c) 2008 - 2011, EllisLab, Inc. * @license		http://codeigniter.com/user_guide/license.html * @link		http://codeigniter.com * @since		Version 1.0 * @filesource */// ------------------------------------------------------------------------/** * Pagination Class * * @package		CodeIgniter * @subpackage	Libraries * @category	Pagination * @author		ExpressionEngine Dev Team * @link		http://codeigniter.com/user_guide/libraries/pagination.html */class CI_Pagination {	var $base_url			= ''; // The page we are linking to	var $prefix				= ''; // A custom prefix added to the path.	var $suffix				= ''; // A custom suffix added to the path.	var $total_rows			=  0; // Total number of items (database results)	var $per_page			= 10; // Max number of items you want shown per page	var $num_links			=  2; // Number of "digit" links to show before/after the currently viewed page	var $cur_page			=  0; // The current page being viewed	var $use_page_numbers	= FALSE; // Use page number for segment instead of offset	var $first_link			= '&lsaquo; First';	var $next_link			= '>';	var $prev_link			= '<';	var $last_link			= 'Last &rsaquo;';	var $uri_segment		= 3;	var $full_tag_open		= '';	var $full_tag_close		= '';	var $first_tag_open		= '';	var $first_tag_close	= ' ';	var $last_tag_open		= ' ';	var $last_tag_close		= '';	var $first_url			= ''; // Alternative URL for the First Page.	var $cur_tag_open		= ' <strong>';	var $cur_tag_close		= '</strong>';	var $next_tag_open		= ' ';	var $next_tag_close		= ' ';	var $prev_tag_open		= ' ';	var $prev_tag_close		= '';	var $num_tag_open		= ' ';	var $num_tag_close		= '';	var $page_query_string	= FALSE;	var $query_string_segment = 'per_page';	var $display_pages		= TRUE;	var $anchor_class		= '';	/**	 * Constructor	 *	 * @access	public	 * @param	array	initialization parameters	 */	public function __construct($params = array())	{		if (count($params) > 0)		{			$this->initialize($params);		}		if ($this->anchor_class != '')		{			$this->anchor_class = 'class="'.$this->anchor_class.'" ';		}		log_message('debug', "Pagination Class Initialized");	}	// --------------------------------------------------------------------	/**	 * Initialize Preferences	 *	 * @access	public	 * @param	array	initialization parameters	 * @return	void	 */	function initialize($params = array())	{		if (count($params) > 0)		{			foreach ($params as $key => $val)			{				if (isset($this->$key))				{					$this->$key = $val;				}			}		}	}	// --------------------------------------------------------------------	/**	 * Generate the pagination links	 *	 * @access	public	 * @return	string	 */	function create_links()	{		// If our item count or per-page total is zero there is no need to continue.		if ($this->total_rows == 0 OR $this->per_page == 0)		{			return '';		}		// Calculate the total number of pages		$num_pages = ceil($this->total_rows / $this->per_page);		// Is there only one page? Hm... nothing more to do here then.		if ($num_pages == 1)		{			return '';		}		// Set the base page index for starting page number		if ($this->use_page_numbers)		{			$base_page = 1;		}		else		{			$base_page = 0;		}		// Determine the current page number.		$CI =& get_instance();		if ($CI->config->item('enable_query_strings') === TRUE OR $this->page_query_string === TRUE)		{			if ($CI->input->get($this->query_string_segment) != $base_page)			{				$this->cur_page = $CI->input->get($this->query_string_segment);				// Prep the current page - no funny business!				$this->cur_page = (int) $this->cur_page;			}		}		else		{			if ($CI->uri->segment($this->uri_segment) != $base_page)			{				$this->cur_page = $CI->uri->segment($this->uri_segment);				// Prep the current page - no funny business!				$this->cur_page = (int) $this->cur_page;			}		}				// Set current page to 1 if using page numbers instead of offset		if ($this->use_page_numbers AND $this->cur_page == 0)		{			$this->cur_page = $base_page;		}		$this->num_links = (int)$this->num_links;		if ($this->num_links < 1)		{			show_error('Your number of links must be a positive number.');		}		if ( ! is_numeric($this->cur_page))		{			$this->cur_page = $base_page;		}		// Is the page number beyond the result range?		// If so we show the last page		if ($this->use_page_numbers)		{			if ($this->cur_page > $num_pages)			{				$this->cur_page = $num_pages;			}		}		else		{			if ($this->cur_page > $this->total_rows)			{				$this->cur_page = ($num_pages - 1) * $this->per_page;			}		}		$uri_page_number = $this->cur_page;				if ( ! $this->use_page_numbers)		{			$this->cur_page = floor(($this->cur_page/$this->per_page) + 1);		}		// Calculate the start and end numbers. These determine		// which number to start and end the digit links with		$start = (($this->cur_page - $this->num_links) > 0) ? $this->cur_page - ($this->num_links - 1) : 1;		$end   = (($this->cur_page + $this->num_links) < $num_pages) ? $this->cur_page + $this->num_links : $num_pages;		// Is pagination being used over GET or POST?  If get, add a per_page query		// string. If post, add a trailing slash to the base URL if needed		if ($CI->config->item('enable_query_strings') === TRUE OR $this->page_query_string === TRUE)		{			$this->base_url = rtrim($this->base_url).'&'.$this->query_string_segment.'=';		}		else		{			$this->base_url = rtrim($this->base_url, '/') .'/';		}		// And here we go...		$output = '';		// Render the "First" link		if  ($this->first_link !== FALSE AND $this->cur_page > ($this->num_links + 1))		{			$first_url = ($this->first_url == '') ? $this->base_url : $this->first_url;			$output .= $this->first_tag_open.'<a '.$this->anchor_class.'href="'.$first_url.'">'.$this->first_link.'</a>'.$this->first_tag_close;		}		// Render the "previous" link		if  ($this->prev_link !== FALSE AND $this->cur_page != 1)		{			if ($this->use_page_numbers)			{				$i = $uri_page_number - 1;			}			else			{				$i = $uri_page_number - $this->per_page;			}			if ($i == 0 && $this->first_url != '')			{				$output .= $this->prev_tag_open.'<a '.$this->anchor_class.'href="'.$this->first_url.'">'.$this->prev_link.'</a>'.$this->prev_tag_close;			}			else			{				$i = ($i == 0) ? '' : $this->prefix.$i.$this->suffix;				$output .= $this->prev_tag_open.'<a '.$this->anchor_class.'href="'.$this->base_url.$i.'">'.$this->prev_link.'</a>'.$this->prev_tag_close;			}		}		// Render the pages		if ($this->display_pages !== FALSE)		{			// Write the digit links			for ($loop = $start -1; $loop <= $end; $loop++)			{				if ($this->use_page_numbers)				{					$i = $loop;				}				else				{					$i = ($loop * $this->per_page) - $this->per_page;				}				if ($i >= $base_page)				{					if ($this->cur_page == $loop)					{						$output .= $this->cur_tag_open.$loop.$this->cur_tag_close; // Current page					}					else					{						$n = ($i == $base_page) ? '' : $i;						if ($n == '' && $this->first_url != '')						{							$output .= $this->num_tag_open.'<a '.$this->anchor_class.'href="'.$this->first_url.'">'.$loop.'</a>'.$this->num_tag_close;						}						else						{							$n = ($n == '') ? '' : $this->prefix.$n.$this->suffix;							$output .= $this->num_tag_open.'<a '.$this->anchor_class.'href="'.$this->base_url.$n.'">'.$loop.'</a>'.$this->num_tag_close;						}					}				}			}		}		// Render the "next" link		if ($this->next_link !== FALSE AND $this->cur_page < $num_pages)		{			if ($this->use_page_numbers)			{				$i = $this->cur_page + 1;			}			else			{				$i = ($this->cur_page * $this->per_page);			}			$output .= $this->next_tag_open.'<a '.$this->anchor_class.'href="'.$this->base_url.$this->prefix.$i.$this->suffix.'">'.$this->next_link.'</a>'.$this->next_tag_close;		}		// Render the "Last" link		if ($this->last_link !== FALSE AND ($this->cur_page + $this->num_links) < $num_pages)		{			if ($this->use_page_numbers)			{				$i = $num_pages;			}			else			{				$i = (($num_pages * $this->per_page) - $this->per_page);			}			$output .= $this->last_tag_open.'<a '.$this->anchor_class.'href="'.$this->base_url.$this->prefix.$i.$this->suffix.'">'.$this->last_link.'</a>'.$this->last_tag_close;		}		// Kill double slashes.  Note: Sometimes we can end up with a double slash		// in the penultimate link so we'll kill all double slashes.		$output = preg_replace("#([^:])//+#", "\\1/", $output);		// Add the wrapper HTML if exists		$output = $this->full_tag_open.$output.$this->full_tag_close;		return $output;	}}// END Pagination Class/* End of file Pagination.php *//* Location: ./system/libraries/Pagination.php */

你找到“上页”在哪里,改了就是了
其他雷同

对 $output 进行替换之后return

Statement
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
How do you modify data stored in a PHP session?How do you modify data stored in a PHP session?Apr 27, 2025 am 12:23 AM

TomodifydatainaPHPsession,startthesessionwithsession_start(),thenuse$_SESSIONtoset,modify,orremovevariables.1)Startthesession.2)Setormodifysessionvariablesusing$_SESSION.3)Removevariableswithunset().4)Clearallvariableswithsession_unset().5)Destroythe

Give an example of storing an array in a PHP session.Give an example of storing an array in a PHP session.Apr 27, 2025 am 12:20 AM

Arrays can be stored in PHP sessions. 1. Start the session and use session_start(). 2. Create an array and store it in $_SESSION. 3. Retrieve the array through $_SESSION. 4. Optimize session data to improve performance.

How does garbage collection work for PHP sessions?How does garbage collection work for PHP sessions?Apr 27, 2025 am 12:19 AM

PHP session garbage collection is triggered through a probability mechanism to clean up expired session data. 1) Set the trigger probability and session life cycle in the configuration file; 2) You can use cron tasks to optimize high-load applications; 3) You need to balance the garbage collection frequency and performance to avoid data loss.

How can you trace session activity in PHP?How can you trace session activity in PHP?Apr 27, 2025 am 12:10 AM

Tracking user session activities in PHP is implemented through session management. 1) Use session_start() to start the session. 2) Store and access data through the $_SESSION array. 3) Call session_destroy() to end the session. Session tracking is used for user behavior analysis, security monitoring, and performance optimization.

How can you use a database to store PHP session data?How can you use a database to store PHP session data?Apr 27, 2025 am 12:02 AM

Using databases to store PHP session data can improve performance and scalability. 1) Configure MySQL to store session data: Set up the session processor in php.ini or PHP code. 2) Implement custom session processor: define open, close, read, write and other functions to interact with the database. 3) Optimization and best practices: Use indexing, caching, data compression and distributed storage to improve performance.

Explain the concept of a PHP session in simple terms.Explain the concept of a PHP session in simple terms.Apr 26, 2025 am 12:09 AM

PHPsessionstrackuserdataacrossmultiplepagerequestsusingauniqueIDstoredinacookie.Here'showtomanagethemeffectively:1)Startasessionwithsession_start()andstoredatain$_SESSION.2)RegeneratethesessionIDafterloginwithsession_regenerate_id(true)topreventsessi

How do you loop through all the values stored in a PHP session?How do you loop through all the values stored in a PHP session?Apr 26, 2025 am 12:06 AM

In PHP, iterating through session data can be achieved through the following steps: 1. Start the session using session_start(). 2. Iterate through foreach loop through all key-value pairs in the $_SESSION array. 3. When processing complex data structures, use is_array() or is_object() functions and use print_r() to output detailed information. 4. When optimizing traversal, paging can be used to avoid processing large amounts of data at one time. This will help you manage and use PHP session data more efficiently in your actual project.

Explain how to use sessions for user authentication.Explain how to use sessions for user authentication.Apr 26, 2025 am 12:04 AM

The session realizes user authentication through the server-side state management mechanism. 1) Session creation and generation of unique IDs, 2) IDs are passed through cookies, 3) Server stores and accesses session data through IDs, 4) User authentication and status management are realized, improving application security and user experience.

See all articles

Hot AI Tools

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.

Undress AI Tool

Undress AI Tool

Undress images for free

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

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.