Table of Contents
Detailed explanation of CodeIgniter extended core class examples, detailed explanation of codeigniter
Articles you may be interested in:
Home Backend Development PHP Tutorial Detailed explanation of CodeIgniter extended core class examples, detailed explanation of codeigniter_PHP tutorial

Detailed explanation of CodeIgniter extended core class examples, detailed explanation of codeigniter_PHP tutorial

Jul 12, 2016 am 09:00 AM
codeigniter Expand

Detailed explanation of CodeIgniter extended core class examples, detailed explanation of codeigniter

The example in this article describes the method of CodeIgniter extending core class. Share it with everyone for your reference, the details are as follows:

The extension of core classes, auxiliary classes and functions in CI is quite convenient. The subclass_prefix extension prefix is ​​specified in the configuration file. The default is MY_. This configuration needs to be used as the prefix when extending. The extension methods are summarized below.

1. Extend core classes

The core classes are located under system/core, and most of them will be automatically loaded during initialization. There are two ways to extend core classes: replacing core classes and inheriting core classes.

Replace core classes

When a file with the same name as system/core exists in the application/core directory, the core class will be automatically replaced. Taking Loader.php as an example, this class will be automatically loaded after application/core/Loader.php is created. Since this class is the core class of the system, if Loader.php does not implement the methods in the CI_Loader class, an error will be reported, such as:

class CI_Loader
{
  ...
}

Copy after login

Replacing the core class requires rewriting all methods in it to avoid affecting the core functionality. But most of the time, there is no need to rewrite the entire core. Basically, it is just to add certain methods. In this case, inheritance can be used.

Inherit core classes

Inheriting the core class needs to be prefixed with subclass_prefix. If you extend the Input class, you need to create application/core/MY_Input.php, and MY_Input needs to inherit the CI_Input class, such as:

<&#63;php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
class MY_Input extends CI_Input
{
  function _clean_input_keys($str)
  {
    $config = &get_config('config');
    if ( ! preg_match("/^[".$config['permitted_uri_chars']."]+$/i", rawurlencode($str))) {
      exit('Disallowed Key Characters.');
    }
    // Clean UTF-8 if supported
    if (UTF8_ENABLED === TRUE) {
      $str = $this->uni->clean_string($str);
    }
    return $str;
  }
}
/* End of file MY_Input.php */
/* Location: ./application/core/MY_Input.php */

Copy after login

2. Extended CI library

Some auxiliary classes are implemented under system/libraries. When it is necessary to extend these classes, the processing method is the same as the core class, except that the directory becomes application/libraries

3. Extended auxiliary functions

The auxiliary functions are stored in the application/helpers directory. The "inheritance" method of the auxiliary functions is the same as above. Because CI's auxiliary functions all use function_exists to determine whether they exist, the purpose of "rewriting" can also be achieved. For example, add an array sorting method in array:

<&#63;php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/**
 * 对二维数组进行排序
 * 
 * @param array $data 需要排序的字段
 * @param array $sort_field 按哪个键进行排序,如果不是所有键中都含有该字段则返回原数组
 * @param array $sort_type 排序方式 SORT_ASC 升序 SORT_DESC 降序
 * @return array
 */
function array_field_sort($data, $sort_field, $sort_type = SORT_ASC)
{
  if(! is_array($data)) {
    return false;
  }
  $sort_arr = array();
  foreach($data as $key => $val) {
    if(isset($val[$sort_field])) {
      $sort_arr[$key] = $val[$sort_field];
    }
  }
  if(count($sort_arr) == count($data)) {
    array_multisort($sort_arr, $sort_type, $data);
  }
  return $data;
}
/* End of file MY_array_helper.php */
/* Location: ./application/helpers/MY_array_helper.php */

Copy after login

In general, most of the content in the system directory of the CI framework can be rewritten, which is very flexible and easy to expand. But sometimes you need to pay attention. The more extensions, the better. Ensure that the functions that CI cannot be implemented are expanded. Finally, since CI provides extended functions, do not modify the content under system directly.

Readers who are interested in more codeigniter related content can check out the special topics on this site: "Introduction to codeigniter tutorial" and "CI (CodeIgniter) framework advanced tutorial"

I hope this article will be helpful to everyone’s PHP program design based on the CodeIgniter framework.

Articles you may be interested in:

  • Codeigniter controller controller inheritance problem example analysis
  • 2 Codeigniter file batch upload controller writing examples
  • CodeIgniter Detailed explanation of multi-language implementation method
  • CI (CodeIgniter) model usage example analysis
  • Notes on using CodeIgniter view
  • Detailed explanation of CodeIgniter read-write separation implementation method
  • CI (CodeIgniter) Implementation method of simply counting the number of visitors
  • CodeIgniter custom controller MY_Controller usage analysis

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/1094768.htmlTechArticleDetailed explanation of codeIgniter extension core class examples, codeigniter detailed explanation This example describes the method of CodeIgniter extension core class. Share it with everyone for your reference, the details are as follows: The core classes in CI...
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

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

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)

From start to finish: How to use php extension cURL to make HTTP requests From start to finish: How to use php extension cURL to make HTTP requests Jul 29, 2023 pm 05:07 PM

From start to finish: How to use php extension cURL for HTTP requests Introduction: In web development, it is often necessary to communicate with third-party APIs or other remote servers. Using cURL to make HTTP requests is a common and powerful way. This article will introduce how to use PHP to extend cURL to perform HTTP requests, and provide some practical code examples. 1. Preparation First, make sure that php has the cURL extension installed. You can execute php-m|grepcurl on the command line to check

Extensions and third-party modules for PHP functions Extensions and third-party modules for PHP functions Apr 13, 2024 pm 02:12 PM

To extend PHP function functionality, you can use extensions and third-party modules. Extensions provide additional functions and classes that can be installed and enabled through the pecl package manager. Third-party modules provide specific functionality and can be installed through the Composer package manager. Practical examples include using extensions to parse complex JSON data and using modules to validate data.

How to implement custom middleware in CodeIgniter How to implement custom middleware in CodeIgniter Jul 29, 2023 am 10:53 AM

How to implement custom middleware in CodeIgniter Introduction: In modern web development, middleware plays a vital role in applications. They can be used to perform some shared processing logic before or after the request reaches the controller. CodeIgniter, as a popular PHP framework, also supports the use of middleware. This article will introduce how to implement custom middleware in CodeIgniter and provide a simple code example. Middleware overview: Middleware is a kind of request

How to install mbstring extension under CENTOS7? How to install mbstring extension under CENTOS7? Jan 06, 2024 pm 09:59 PM

1.UncaughtError:Calltoundefinedfunctionmb_strlen(); When the above error occurs, it means that we have not installed the mbstring extension; 2. Enter the PHP installation directory cd/temp001/php-7.1.0/ext/mbstring 3. Start phpize(/usr/local/bin /phpize or /usr/local/php7-abel001/bin/phpize) command to install php extension 4../configure--with-php-config=/usr/local/php7-abel

CodeIgniter middleware: Accelerate application responsiveness and page rendering CodeIgniter middleware: Accelerate application responsiveness and page rendering Jul 28, 2023 pm 06:51 PM

CodeIgniter Middleware: Accelerating Application Responsiveness and Page Rendering Overview: As web applications continue to grow in complexity and interactivity, developers need to use more efficient and scalable solutions to improve application performance and responsiveness. . CodeIgniter (CI) is a lightweight PHP-based framework that provides many useful features, one of which is middleware. Middleware is a series of tasks that are performed before or after the request reaches the controller. This article will introduce how to use

How to use the Aurora Push extension to implement batch message push function in PHP applications How to use the Aurora Push extension to implement batch message push function in PHP applications Jul 25, 2023 pm 08:07 PM

How to use the Aurora Push extension to implement batch message push function in PHP applications. In the development of mobile applications, message push is a very important function. Jiguang Push is a commonly used message push service that provides rich functions and interfaces. This article will introduce how to use the Aurora Push extension to implement batch message push functionality in PHP applications. Step 1: Register a Jiguang Push account and obtain an API key. First, we need to register on the Jiguang Push official website (https://www.jiguang.cn/push)

How to use the database query builder (Query Builder) in the CodeIgniter framework How to use the database query builder (Query Builder) in the CodeIgniter framework Jul 28, 2023 pm 11:13 PM

Introduction to the method of using the database query builder (QueryBuilder) in the CodeIgniter framework: CodeIgniter is a lightweight PHP framework that provides many powerful tools and libraries to facilitate developers in web application development. One of the most impressive features is the database query builder (QueryBuilder), which provides a concise and powerful way to build and execute database query statements. This article will introduce how to use Co

Use PHP framework CodeIgniter to develop a real-time chat application to provide convenient communication services Use PHP framework CodeIgniter to develop a real-time chat application to provide convenient communication services Jun 27, 2023 pm 02:49 PM

With the development of mobile Internet, instant messaging has become more and more important and popular. For many companies, live chat is more like a communication service, providing a convenient communication method that can quickly and effectively solve business problems. Based on this, this article will introduce how to use the PHP framework CodeIgniter to develop a real-time chat application. Understand the CodeIgniter framework CodeIgniter is a lightweight PHP framework that provides a series of simple tools and libraries to help developers quickly

See all articles