Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have the php array like this:

Array
(
    [0] => Array
        (            
            [time_stamp] => 1287484988
            [date_time] => Tuesday, 19 October 2010 16:13:7
            [day] => 19
            [month] => 10
            [year] => 2010
            [time_spent] => 41
        )

    [1] => Array
        (         
            [time_stamp] => 1287484662
            [date_time] => Tuesday, 19 October 2010 16:7:41
            [day] => 19
            [month] => 10
            [year] => 2010
            [time_spent] => 215           
        )
)

Suppose in january the total number of days is: 31

How do i loop through the number of days(31) to get the SUM of time_spent(time_spent for every day for a given month) using GROUP BY time_stamp where day=$day,month=$month,year=$year using php

Thank u.

share|improve this question
1  
If you're getting this array data from a database query, you could get the database query itself to return the sums for you – Mark Baker Mar 11 '11 at 12:40
Because the array i stored in memcache. so i need looping through normal array – user655334 Mar 11 '11 at 12:45

2 Answers

up vote 1 down vote accepted

The basic version would be

$sums = array();

foreach ($your_array as $entry) {
   if (!isset($sums[$entry['year']]) {
        $sums[$entry['year']] = array();
   }
   if (!isset($sums[$entry['year']][$entry['month']]) {
        $sums[$entry['year']][$entry['month']] = array();
   }
   if (!isset($sums[$entry['year']][$entry['month']][$entry['day']]) {
        $sums[$entry['year']][$entry['month']][$entry['day']] = 0;
   }

   $sums[$entry['year']][$entry['month']][$entry['day']] += $entry['time_spent'];
}

Ugly, but the 3 if() prevent various warnings from being spit out as the $sums array is built.

share|improve this answer
thanks u r reply. But i need total time_spent of a given month (day wise time_spent for a given month) – user655334 Mar 12 '11 at 4:05
In that case, just eliminate the day portion and sum up purely by year/month. – Marc B Mar 12 '11 at 14:06

Have you tried using array_filter?

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.