本文整理汇总了PHP中Arr::merge_assoc方法的典型用法代码示例。如果您正苦于以下问题:PHP Arr::merge_assoc方法的具体用法?PHP Arr::merge_assoc怎么用?PHP Arr::merge_assoc使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Arr
的用法示例。
在下文中一共展示了Arr::merge_assoc方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: merge_module_configs
public static function merge_module_configs($config, $config_name)
{
$modules = Module::loaded();
foreach ($modules as $module => $path) {
Config::load($module . '::' . $config_name, $module . '_' . $config_name);
if (!($module_config = Config::get($module . '_' . $config_name))) {
continue;
}
$config = Arr::merge_assoc($config, $module_config);
}
return $config;
}
示例2: test_merge_assoc
/**
* Tests Arr::merge_assoc()
*
* @test
*/
public function test_merge_assoc()
{
$arr1 = array('one' => 1, 2 => 2, 3 => 3, 4 => array(56), 5 => 87);
$arr2 = array(1 => 27, 2 => 90, 4 => array('give_me' => 'bandwidth'), 6 => '90', 7 => 'php');
$expected = array('one' => 1, 2 => 90, 3 => 3, 4 => array(56, 'give_me' => 'bandwidth'), 5 => 87, 1 => 27, 6 => '90', 7 => 'php');
$output = Arr::merge_assoc($arr1, $arr2);
$this->assertEquals($expected, $output);
}