14 lines
200 B
PHP
14 lines
200 B
PHP
|
<?php
|
||
|
$config = array(
|
||
|
'Read' => 'value2',
|
||
|
'Deep' => array(
|
||
|
'Second' => array(
|
||
|
'SecondDeepest' => 'buried2'
|
||
|
)
|
||
|
),
|
||
|
'TestAcl' => array(
|
||
|
'classname' => 'Overwrite',
|
||
|
'custom' => 'one'
|
||
|
)
|
||
|
);
|