|
Posted by Rik on 07/25/06 01:29
David T. Ashley wrote:
> Hi,
>
> Aside from the obvious recursive syntax for initialization,
>
> $x = array( ... array( ...)),
array_fill() is a good one for some uses, range() fo others.
> what is the best way to deal with multi-dimensional arrays in PHP?
Euhm, treat them as arrays? What do you want to do with them
> It seems there is no syntax like $x[i][j][k]???
There is, almost exactly like it. Remember to quote the kaynames though.
Grtz,
--
Rik Wasmus
[Back to original message]
|