Jump to content

Counting an array


ILMV

Recommended Posts

Hello all

 

If I count() this array...

 

array('1','2','3','4');

 

it returns 4, but I want to count this array...

 

array(array('1','2'),array('3','4'));

 

and I want it to return 4, the total number of values within all nested array.

 

Is there a way to do this without having to use a foreach loop?

 

Many Thanks

Link to comment
https://forums.phpfreaks.com/topic/145240-counting-an-array/
Share on other sites

I know, what I should have said is 'if possible, without a foreach loop'.

 

Upon research it would appear this if one of the only ways to count the array I have.

 

You could use a for/while loop instead you know, just extra work. But as for being more efficient, doubtful.

 

:)

Link to comment
https://forums.phpfreaks.com/topic/145240-counting-an-array/#findComment-765237
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.