Heim >Backend-Entwicklung >PHP-Tutorial >全局包含一个config.php是不是会增加内存消耗?

全局包含一个config.php是不是会增加内存消耗?

WBOY
WBOYOriginal
2016-06-06 20:27:241342Durchsuche

因为除了PHP7,其余版本都不支持define一个数组,如果把一个站点全局配置的数组文件,如数据库账号密码,翻页数量,路由规则容易存成一个数组文件,放到config.php中,全局使用时都包含这个文件,只需要使用$config即可,这样做会不会增大服务器内存消耗?

回复内容:

因为除了PHP7,其余版本都不支持define一个数组,如果把一个站点全局配置的数组文件,如数据库账号密码,翻页数量,路由规则容易存成一个数组文件,放到config.php中,全局使用时都包含这个文件,只需要使用$config即可,这样做会不会增大服务器内存消耗?

理论上会,这相当于 requrie 'config.php',但消耗可以忽略不计。

可以忽略。。。

首先你应该明确,不管是定义一个常量数组还是普通数组,都是占用内存的.

如果你不想在定义后被修改,那就用常量数组:

<code><?php //PHP5:
define('APP', serialize(array())); 
//用的时候需要反序列化
$app = unserialize(APP);
//PHP7:
define('APP', array());</code></code>

如果你在定义后需要修改,那就用普通数组,比如在需要时才生成数据库连接对象:

<code><?php $app = array('db' => 'db_conn_obj');
function we_db(&$app) {
    $app['db'] = @new mysqli('127.0.0.1', 'root', 'pass', 'mysql');
    register_shutdown_function(function() use ($app) { $app['db']->close();    });
}
function we_foo1() {
    global $app;
    if(!is_object($app['db'])) we_db($app);
    return $app['db']->query('select user,host from user where user = \'root\'')->fetch_all();
}
function we_foo2() {
    global $app;
    if(!is_object($app['db'])) we_db($app);
    return $app['db']->query('select user,host from user')->fetch_all();
}
print_r(we_foo1());
print_r(we_foo2());</code>

既然东西多了,那内存消耗必然也会增加。不过除非你配置项多到变态,否则一般都可以无视的

<code class="php">//从php5.6 之后const 能定义数组,而define()在php7.0之后开始支持
const FOO = [1,2,3];
define('FOO', [1,2,3]);</code>
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn