mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 11:28:25 +00:00
87924414fc
This fixes some of the awkward behavior that using array_merge_recursive() could create. Fixes #2441
12 lines
170 B
PHP
12 lines
170 B
PHP
<?php
|
|
$config = array(
|
|
'Read' => 'value',
|
|
'Deep' => array(
|
|
'Deeper' => array(
|
|
'Deepest' => 'buried'
|
|
)
|
|
),
|
|
'TestAcl' => array(
|
|
'classname' => 'Original'
|
|
)
|
|
);
|