0
public function loadConfig($config)
{
    if(is_file(path('config') . $config . '.php'))
    {
        return include_once path('config') . $config . '.php';
    }

}

我在控制器中加载模型的功能相同,一切正常。但我不能包含配置文件,路径是正确的。如果我在返回之前放

include_once path('config') . $config . '.php';
print_r($config_array);

它打印数组值

4

1 回答 1

1

您将需要删除“_once”(因为在这种情况下防止第二次包含没有意义,它适用于类但不适用于配置文件)。此外,您需要在包含的文件中包含“return”语句或返回数组,而不是包含函数的返回值:

public function loadConfig($config)
{
    $filename = path('config') . $config . '.php';
    if (is_readable($filename)) {
        include($filename);
        return $config_array;
    }

    // error handling, i.e., throw an exception ...
}

使用“return”语句的解决方案:

配置文件:

$config_array = array( ... );
return $config_array;

使用配置加载器方法的类:

public function loadConfig($config)
{
    $filename = path('config') . $config . '.php';
    if (is_readable($filename)) {
        return include($filename);
    }

    // error handling, i.e., throw an exception ...
}
于 2012-12-01T11:46:34.767 回答