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.
--
Plutarck
Should be working on something...
...but forgot what it was.
"Jack Dempsey" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> yes, that's a multi-dimensional array, which is fine in php (and
> everything else i can think of =P)...
>
> -jack
>
> Scott Fletcher wrote:
> >
> > Hi! I am wondering if there is such a php array that can take care of
the x
> > and y axis data. I figure that using this array type, $axis[$x][$y]
would
> > do the trick. Would it work? If not, then education me on what would
work!
> > Thanks!
> >
> > Scott
> >
> > --
> > 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]
>
> --
> 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]
>
--
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]