Dec 3, 2003 #1 frozenpeas Technical User Joined Sep 13, 2001 Messages 893 Location CA Does PHP not have a function to return the numerical value of the length of an array? If not, how could I achieve this? Thanks! frozenpeas
Does PHP not have a function to return the numerical value of the length of an array? If not, how could I achieve this? Thanks! frozenpeas
Dec 3, 2003 1 #2 sleipnir214 Programmer Joined May 6, 2002 Messages 15,350 Location US count() will return the number of elements in an array. (http://us4.php.net/manual/en/function.count.php) Want the best answers? Ask the best questions: http://www.catb.org/~esr/faqs/smart-questions.htmlTANSTAAFL!! Upvote 0 Downvote
count() will return the number of elements in an array. (http://us4.php.net/manual/en/function.count.php) Want the best answers? Ask the best questions: http://www.catb.org/~esr/faqs/smart-questions.htmlTANSTAAFL!!
Dec 3, 2003 Thread starter #3 frozenpeas Technical User Joined Sep 13, 2001 Messages 893 Location CA Oh, cool. Everything I had searched for, was along the lines of "length". Thanks! frozenpeas Upvote 0 Downvote
Oh, cool. Everything I had searched for, was along the lines of "length". Thanks! frozenpeas