mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 19:38:26 +00:00
9 lines
116 B
PHP
9 lines
116 B
PHP
|
<?php
|
||
|
$config = array(
|
||
|
'Read' => 'value',
|
||
|
'Deep' => array(
|
||
|
'Deeper' => array(
|
||
|
'Deepest' => 'buried'
|
||
|
)
|
||
|
)
|
||
|
);
|