SoFunction
Updated on 2025-03-10

Methods to improve CodeIgniter's code prompt function in IDE

Methods to improve CodeIgniter's code prompt function in IDE

Updated: July 19, 2014 16:39:38 Submission: shichen2014
This article mainly introduces the method to improve the code prompt function of CodeIgniter in IDE. Friends who need it can refer to it.

This article briefly describes the method to improve the code prompt function of CodeIgniter in the IDE. You can realize this functional requirement by simply copying the following code to the system/core/ path:

/**
 * @var CI_Loader
 */
 var $load;
 /**
 * @var CI_DB_active_record
 */
 var $db;
 /**
 * @var CI_Calendar
 */
 var $calendar;
 /**
 * @var Email
 */
 var $email;
 /**
 * @var CI_Encrypt
 */
 var $encrypt;
 /**
 * @var CI_Ftp
 */
 var $ftp;
 /**
 * @var CI_Hooks
 */
 var $hooks;
 /**
 * @var CI_Image_lib
 */
 var $image_lib;
 /**
 * @var CI_Language
 */
 var $language;
 /**
 * @var CI_Log
 */
 var $log;
 /**
 * @var CI_Output
 */
 var $output;
 /**
 * @var CI_Pagination
 */
 var $pagination;
 /**
 * @var CI_Parser
 */
 var $parser;
 /**
 * @var CI_Session
 */
 var $session;
 /**
 * @var CI_Sha1
 */
 var $sha1;
 /**
 * @var CI_Table
 */
 var $table;
 /**
 * @var CI_Trackback
 */
 var $trackback;
 /**
 * @var CI_Unit_test
 */
 var $unit;
 /**
 * @var CI_Upload
 */
 var $upload;
 /**
 * @var CI_URI
 */
 var $uri;
 /**
 * @var CI_User_agent
 */
 var $agent;
 /**
 * @var CI_Validation
 */
 var $validation;
 /**
 * @var CI_Xmlrpc
 */
 var $xmlrpc;
 /**
 * @var CI_Zip
 */
 var $zip;
  • CodeIgniter

Related Articles

  • Laravel installation and configuration tutorial

    This article mainly introduces the laravel installation and configuration tutorial. Friends who need it can refer to it
    2014-10-10
  • Detailed explanation of SESSION mechanism examples in Discuz!X

    This article mainly introduces the SESSION mechanism in Discuz!X, and analyzes the principles and database operation techniques of the SESSION mechanism in Discuz!X in more detail in the form of an example. It has certain reference value. Friends who need it can refer to it.
    2015-09-09
  • Methods to implement refresh-free pagination using ajax in Thinkphp

    This article mainly introduces the relevant information about using ajax to achieve refresh-free pagination in Thinkphp. It is very good and has reference value. Friends who need it can refer to it.
    2016-10-10
  • A note about Laravel Route redirection

    This article mainly introduces a point of attention to Laravel Route redirection. The article provides detailed sample code. Friends in need can refer to it. Let’s take a look together.
    2017-01-01
  • How to use OPCache to improve PHP performance

    This article mainly introduces how to use OPCache to improve the performance of PHP, helping everyone better understand and learn how to use PHP. Interested friends can learn about it.
    2021-04-04
  • PHP uses FFmpeg to obtain information such as total video playback time and code rate

    This article shares information such as using FFmpeg in PHP to read video playback time and code rate. Friends in need can refer to it. Let’s take a look together below.
    2016-09-09
  • 6 super practical PHP code snippets

    This article mainly introduces 10 super practical PHP code examples: blacklist filtering, random color generator, downloading files from the Internet, force downloading files, intercepting pictures, and checking whether the website is down. Friends who need it can refer to it
    2015-08-08
  • 163 emails are sent using phpmailer (example details)

    This article provides a detailed analysis and introduction of the examples sent by 163 emails using phpmailer. Please refer to it if you need it.
    2013-06-06
  • PHP implements a simple login interface

    This article mainly introduces the simple login interface for PHP. The sample code in the article is introduced in detail and has a certain reference value. Interested friends can refer to it.
    2019-10-10
  • ThinkPHP 6 Add jump prompt extension liliuwei/thinkphp-jump operation

    liliuwei/thinkphp-jump is a classic jump prompt in TP5. It has been cancelled in TP6. Download the extension through composer. You can use the jump prompt operation of TP5 in TP6. This article mainly introduces ThinkPHP 6. Add jump prompt extension liliuwei/thinkphp-jump. Friends who need it can refer to it.
    2023-08-08

Latest Comments