Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8361875
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T11:48:16+00:00 2026-06-09T11:48:16+00:00

I am working on a statistics application and I want to output the amount

  • 0

I am working on a statistics application and I want to output the amount of interactions that happened by day.

I have an multidimensional array that pulls all the information from the database, here is an example:

 [0] => Array
            (
                [date] => 2012-07-26
                [location] => 709c6d241674ca22
                [action] => start_scan
            )

        [1] => Array
            (
                [date] => 2012-07-26
                [location] => 709c6d241674ca22
                [action] => scan_displayed
            )

        [2] => Array
            (
                [date] => 2012-07-27
                [location] => 709c6d241674ca22
                [action] => lower_device
            )

        [3] => Array
            (
                [date] => 2012-07-27
                [location] => 709c6d241674ca22
                [action] => how_to_use_displayed
            )

        [4] => Array
            (
                [date] => 2012-07-27
                [location] => 709c6d241674ca22
                [action] => raise_device
            )

        [5] => Array
            (
                [date] => 2012-07-28
                [location] => 709c6d241674ca22
                [action] => scan_displayed
            )

I can work out what day each interaction occurred on by formatting the date:

date('D', strtotime('2012-07-26'));

My question is how do I count how many interactions happened on each day of the week and then output it, something like:

[Sunday] => 2
[Monday] => 3
[Tueday] => 1
[Wednesday] => 5
[Thursday] => 10
[Friday] => 4
[Saturday] => 9

Any suggestions are really appreciated!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-09T11:48:17+00:00Added an answer on June 9, 2026 at 11:48 am
    $dates = array();
    foreach($data as $item) {
        $day = date('l', $item['date']);
        $dates[$day]++;
    }
    var_dump($dates);
    

    You may want to declare the array as $dates = array(‘Monday’=>0, ‘Tuesday’=>0 …. ) to get the array containing the days with no interactions.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an application that generates an array of statistics based on a greyhounds
I'm working on an application that organizes large amounts of athletic statistics for universities.
I am working on application which processes large amount of text data gathering statistics
I have to maintain statistics based on session in my application. Problem is that
i have my application skeleton working as expected - it might be that somebody
I have an application which records statistics. When a user submits their statistics the
So I am writing a mac application that parses SF Giants baseball statistics using
I have a WinForms application that uses XNA to animate 3D models in a
I've worked all night to finish statistics part of a project I'm working on.
I've been working on a project that includes lots of summary statistics. One thing

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.