Plutarck wrote:

> PHP can be a tad screwy with how it handles multi-dimensional arrays, but
> yes PHP handles them. No real speed problems with them either.
>
> But you may just want to use an associative array like:
>
> $loc = array("y" => $y, "x" => $x);
>
> Then just use $loc["y"] and $loc["x"].
>
> Just another option, but feel free to use multi-dimensional arrays. Just be
> aware that PHP supports only two dimensions (so $array[][][] will not work),
> and if you try and get fancy with sort() and count() you are going to give
> yourself a migraine.

$a[1][2][3][4][5] = "6";
echo $a[1][2][3][4][5];

$b[][][][]= "7";
echo $b[0][0][0][0];

I get '6' and '7'.  Am I doing something wrong?  This seems like PHP supports
arrays with
dimensions greater than 2.


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to