gpt4 book ai didi

php - 用户注册mysql之间的平均时间

转载 作者:行者123 更新时间:2023-11-29 19:34:23 25 4
gpt4 key购买 nike

我有一个mysql表来存储用户注册。我想计算用户注册时间之间的平均时间

我的 table 是这样的,

|id|userid_id|name  |time               |
-----------------------------------------
|1 | 100 |xxxxxx|2016-01-25 00:27:16|
|2 | 101 |Xyyyyy|2016-01-26 05:10:04|
|3 | 102 |gggggg|2016-01-27 03:16:13|
|4 | 103 |hhhhhh|2016-01-28 00:11:33|
|5 | 104 |eeeeee|2016-01-29 00:30:16|
|6 | 105 |ssssss|2016-01-30 07:27:16|
|7 | 106 |rrrrrr|2016-01-31 01:20:12|
|8 | 107 |oooooo|2016-01-31 03:31:04|
|9 | 108 |tttttt|2016-01-31 04:55:00|

我需要知道用户注册mysql查询之间的平均时间。另外,如果我使用 UNIXtimestamp

我需要在 MySQL 查询中执行以下操作列到数组的时间(作为时间戳)。 (12,16,32,65,99)循环计算 $array 的和: array[6]-array[5],array[5] - array[4],,array[4] - array[3] ...... 等等...$average = array_sum($array)/count($array);

最佳答案

  1. 列到数组的时间(作为时间戳)。 (12,16,32,65,99)
  2. 循环计算:数组[6]-数组[5],数组[5] - 数组[4]……
  3. 将循环结果保存在另一个数组中
  4. $average = array_sum($array)/count($array);

关于php - 用户注册mysql之间的平均时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41612706/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com