I am a little bit in doubt, if this is a correct notation in a three dimensional array. This is just a part of my code, but when I run the code I get an error, where it says I need ')'.
$property = array(
"green" => array(
"numbers" => array(1 => "#ffffff"
),
"yellow" => array(
"numbers" => array(6 => "#81c77d"
),
"white" => array(
"numbers" => array(24 => "#81e87c"
),
"grey" => array(
"numbers" => array(0 => "#ffffff"
),
"red" => array(
"numbers" => array(34 => "#dfb07b"
)
);