it's not very elegant, but i havent come across any PHP
core function that will do what you asked, so here's a little
loop that will return the total length of a multidimensional
array

$total = 0;
for ($i=0; $i < count($myarray); $i++) {
        $total += count( $myarray[$i] );
}
print $total;

in your case, it will (should) print "8"


> -----Original Message-----
> From: Rasmus Lerdorf [mailto:[EMAIL PROTECTED]]
> Sent: Saturday, February 17, 2001 09:52
> To: bill
> Cc: [EMAIL PROTECTED]
> Subject: Re: [PHP] Count of multi-dimensional array
> 
> 
> count($myarray) will give you 3
> 
> On Sat, 17 Feb 2001, bill wrote:
> 
> > How can i get the count of a multi-dimensional array?
> >
> > if I have
> >
> > $myarray[0][chicken]
> > $myarray[0][fish]
> > $myarray[0][meat]
> > $myarray[1][fries]
> > $myarray[1][chips]
> > $myarray[2][coke]
> > $myarray[2][pepsi]
> > $myarray[2][rootbeer]
> >
> > How can I get the number of first elements (which would be 3 above)?
> >
> > thanks,
> >
> > bill
> >


-- 
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