- Notifications
You must be signed in to change notification settings - Fork6
[READ-ONLY] CakePHP Framework Core Classes. This repo is a split of the main code that can be found inhttps://github.com/cakephp/cakephp
License
cakephp/core
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
A set of classes used for configuration files reading and storing.This repository contains the classes that are used as glue for creating the CakePHP framework.
You can use theConfigure class to store arbitrary configuration data:
useCake\Core\Configure;useCake\Core\Configure\Engine\PhpConfig;Configure::write('Company.name','Pizza, Inc.');Configure::read('Company.name');// Returns: 'Pizza, Inc.'
It also possible to load configuration from external files:
Configure::config('default',newPhpConfig('/path/to/config/folder'));Configure::load('app','default',false);Configure::load('other_config','default');
And write the configuration back into files:
Configure::dump('my_config','default');
Please make sure you check theofficial documentation
About
[READ-ONLY] CakePHP Framework Core Classes. This repo is a split of the main code that can be found inhttps://github.com/cakephp/cakephp
Resources
License
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Packages0
Uh oh!
There was an error while loading.Please reload this page.