How to Get and Set Config Variables in Codeigniter?
Today, i would like to share with you how to set config item value in our codeigniter project. as well as i will share with you how to read that variable value that way we can use global variable in codeigniter 3 application.
We may need to define some global item like site url, site title, site meta data etc that way we can use it in our whole application. So here is very simple and basic example i am going to give you to define set and get config item value in Codeigniter 3 application.
we will use "$this->config" variable for set configuration item value. we will use "set_item()" and "item()" method for set and get value of array key.
So let's see very basic and simple example for config file item value.
Set Config Value:
$this->config->set_item('mainURL','itsolutionstuff.com');
Get Config Value:
$mainURL = $this->config->item('mainURL');
Example Config Value:
$this->config->set_item('mainURL','itsolutionstuff.com');
$mainURL = $this->config->item('mainURL');
print_r($mainURL);
exit;
I hope it can help you....
Hardik Savani
I'm a full-stack developer, entrepreneur and owner of ItSolutionstuff.com. I live in India and I love to write tutorials and tips that can help to other artisan. I am a big fan of PHP, Laravel, Angular, Vue, Node, Javascript, JQuery, Codeigniter and Bootstrap from the early stage. I believe in Hardworking and Consistency.
We are Recommending you
- How to Get All Tables List in Codeigniter?
- Codeigniter Google Recaptcha Form Validation Example
- Codeigniter Ajax Pagination using JQuery Example
- How to implement and use DataTables in CodeIgniter?
- Codeigniter Resize Image and Create Thumbnail Example
- Codeigniter Drag and Drop Multiple Image Upload Example
- How to Get Current Controller or Method Name in Codeigniter?
- Codeigniter Dynamic Dependent Dropdown using Ajax Example
- Codeigniter JQuery Ajax Image Upload Example
- Codeigniter Ajax Infinite Scroll Pagination Example
- Codeigniter Image Upload with Validation Example
- How to Get Last Inserted ID in Codeigniter?
- How to Get IP Address in Codeigniter?