Home > Backend Development > PHP Tutorial > Laravel can read the configuration with Config::get('app.timezone'). Does it read all the configuration files at once?

Laravel can read the configuration with Config::get('app.timezone'). Does it read all the configuration files at once?

WBOY
Release: 2016-09-01 00:20:18
Original
1556 people have browsed it

It reads all the configuration files at once, which seems to be a little less efficient

Reply content:

It reads all the configuration files at once, which seems to be a little less efficient

In fact, even if you don’t use Config::get() to read the configuration, laravel is in the entry file

<code class="php">$response = $kernel->handle(
    $request = Illuminate\Http\Request::capture()
);</code>
Copy after login
All configuration information has been read in

and saved in the items array of IlluminateConfigRepository

So this is the loading overhead of the framework, not the overhead of Config::get

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template