Forum Moderators: coopster
I'm thinking of creating a large 5-dimensional array to pass data between functions. Can anyone tell me if this syntax is safe? It seems to work in PHP 5, and believe it or not, I think it's the easiest solution.
I don't need to sort it or anything, but I need the keys of the first dimension to stay in the order in which they were written when I use foreach to read them.
$a['foo']['2']['3']['4']['5'] = "hello";
Thanks