As you can see from the following array, there are three elements that appear on Nov 18, and another two elements that appear on Nov 22. Can someone tell me how I can retri
Assuming that your array example is representative:
foreach ($array as $key => $value)
{
echo count($value) . "
";
}
Will echo the number of arrays within each of the main array items. In your example, that would also be the number of entries for each date.
This does not of course check the dates themselves