Use the configuration class to define the global variables of Codeigniter. Public functions in CodeIgniter cannot be appended. they can be implemented using helper functions of helper. Create the common_helper.php file, define the required public functions, and store them in the applicationhelpers Directory. the public functions in CodeIgniter cannot be appended, and can be implemented through the helper auxiliary function.
Create the common_helper.php file, define the required public functions, and store them in the application/helpers directory.
Configure $ autoload ['helper'] = array ('common'); in application/config/autoload. php.
Global variables can also be implemented using the helper function. However, a more appropriate method may be defined using the configuration class..
By default, CodeIgniter has a master configuration file located in the application/config. php path, which defines a bunch of global framework-level configurations and an array named $ config.
If you need to add a global configuration item, you can implement it in this file. Considering the separation of custom configuration and framework configuration, we recommend that youCreate a file vars. phpAnd then make the following definition:
The code is as follows:
/**
* Working directory configuration
*/
$ Config ['src'] ['cache'] = FCPATH. '../src/cache ';
$ Config ['src'] ['modules'] = FCPATH. '../src/modules ';
$ Config ['src'] ['WWW '] = FCPATH.' ../src/www ';
Use the following code to read data from the controller:
$ Src = $ this-> config-> item ('src ');
$ Cache = $ src ['cache']
Or:
The code is as follows:
$ Src = $ this-> config-> item ('cache', 'src ');
Of course, you need to automatically load this configuration file in application/config/autoload. php.
Helper function implementation. Create the common_helper.php file, define the required public functions, and store them in the application/helpers directory...