mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 19:38:26 +00:00
87924414fc
This fixes some of the awkward behavior that using array_merge_recursive() could create. Fixes #2441
13 lines
200 B
PHP
13 lines
200 B
PHP
<?php
|
|
$config = array(
|
|
'Read' => 'value2',
|
|
'Deep' => array(
|
|
'Second' => array(
|
|
'SecondDeepest' => 'buried2'
|
|
)
|
|
),
|
|
'TestAcl' => array(
|
|
'classname' => 'Overwrite',
|
|
'custom' => 'one'
|
|
)
|
|
);
|