我试图找出如何将来自两个不同文件的具有相同名称的数组包含到我的PHP文件中。
我知道这很简单,但我似乎无法找到合适的搜索方式让我找到解决方案。
我一直试图引用function_call(menu_config.$config)
之类的数组,但这些数据并不起作用。
答案 0 :(得分:2)
假设两个文件都有一个$config
数组。如果你想要一个结果数组:
include('file1.php');
$new = $config;
include('file2.php');
$new = array_merge($new, $config);
甚至还有两个新阵列:
include('file1.php');
$config_1 = $config;
include('file2.php');
$config_2 = $config;
另一种选择是功能:
function get_config($file) {
include($file);
return $config;
}
$config_1 = get_config('file1.php');