Edit File by line

Deprecated: str_replace(): Passing null to parameter #2 ($replace) of type array|string is deprecated in /home/sportsfever/public_html/filemanger/function.php on line 93
/home/sportsfe.../httpdocs/wp-conte.../plugins/flow-flo.../libs/cakephp/core
File: README.md
[![Total Downloads](https://img.shields.io/packagist/dt/cakephp/core.svg?style=flat-square)](https://packagist.org/packages/cakephp/core)
[0] Fix | Delete
[![License](https://img.shields.io/badge/license-MIT-blue.svg?style=flat-square)](LICENSE.txt)
[1] Fix | Delete
[2] Fix | Delete
# CakePHP Core Classes
[3] Fix | Delete
[4] Fix | Delete
A set of classes used for configuration files reading and storing.
[5] Fix | Delete
This repository contains the classes that are used as glue for creating the CakePHP framework.
[6] Fix | Delete
[7] Fix | Delete
## Usage
[8] Fix | Delete
[9] Fix | Delete
You can use the `Configure` class to store arbitrary configuration data:
[10] Fix | Delete
[11] Fix | Delete
```php
[12] Fix | Delete
use Cake\Core\Configure;
[13] Fix | Delete
use Cake\Core\Configure\Engine\PhpConfig;
[14] Fix | Delete
[15] Fix | Delete
Configure::write('Company.name','Pizza, Inc.');
[16] Fix | Delete
Configure::read('Company.name'); // Returns: 'Pizza, Inc.'
[17] Fix | Delete
```
[18] Fix | Delete
[19] Fix | Delete
It also possible to load configuration from external files:
[20] Fix | Delete
[21] Fix | Delete
```php
[22] Fix | Delete
Configure::config('default', new PhpConfig('/path/to/config/folder'));
[23] Fix | Delete
Configure::load('app', 'default', false);
[24] Fix | Delete
Configure::load('other_config', 'default');
[25] Fix | Delete
```
[26] Fix | Delete
[27] Fix | Delete
And write the configuration back into files:
[28] Fix | Delete
[29] Fix | Delete
```php
[30] Fix | Delete
Configure::dump('my_config', 'default');
[31] Fix | Delete
```
[32] Fix | Delete
[33] Fix | Delete
## Documentation
[34] Fix | Delete
[35] Fix | Delete
Please make sure you check the [official documentation](https://book.cakephp.org/3/en/development/configuration.html)
[36] Fix | Delete
[37] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function