Use the configuration class to define the Codeigniter global variable _ PHP Tutorial-php Tutorial

Source: Internet
Author: User
Tags codeigniter
Use the configuration class to define the global variables of Codeigniter. Previously mentioned introduction of custom public functions to CodeIgniter this article mentioned the implementation of public functions. global variables can also be implemented using the helper function. However, CodeIgniter, which is more appropriate, introduced a user-defined public function. This article mentions public function implementation. global variables can also be implemented using the helper function.

However, a more appropriate method may be defined using the configuration class.

Related downloads:CodeIgniter v1.7.3 open-source PHP Framework

By default, CodeIgniter has a master configuration file located inApplication/config. php path, which defines a bunch of framework-level global configurations, a name is$ 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 you create a new file vars. php and then define it 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:

$src = $this->config->item('cache', 'src');

Of course, you need to automatically load this configuration file in application/config/autoload. php.

References: http://codeigniter.com/user_guide/libraries/config.html

CodeIgniter Introduces Custom public functions. This article mentions public function implementation. global variables can also be implemented using the helper function. However, it is more appropriate...

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.