我有一个很大的"配置"我想要存储在不同文件中的数组(从Laravel的配置文件中采用这种做法)。
将其存储在app/config/myconfig.php
<?php
return array(
'foo' => 'bar',
);
如果我想分配它,我如何在我的代码中调用它?例如。 $myarray = app/config/myconfig.php
答案 0 :(得分:2)
包含文件:
$myarray = include 'app/config/myconfig.php';