if (!function_exists('getMonthData')) { /** * 获取月数据 */ function getMonthData($timestamp) { if (is_string($timestamp)) { $timestamp = strtotime($timestamp); } $year = date('Y', $timestamp); $yue_number = date('m', $timestamp); $yue_start = date('Y-m-01', $timestamp); $yue_end = date('Y-m-t', $timestamp); return [ 'year' => $year, 'yue_number' => $yue_number, 'yue_start' => $yue_start, 'yue_end' => $yue_end, 'data' => $year.'年第'.$yue_number.'月('.$yue_start.'至'.$yue_end.')' ]; } }
时间: 2024-04-20 16:23:44 浏览: 77
获取当前月日期
你提供的代码是一个自定义函数`getMonthData()`,用于获取给定时间戳所在月份的相关数据。如果该函数不存在,则定义该函数。
在该函数中,首先判断传入的时间戳参数是否为字符串类型,如果是则使用`strtotime()`函数将字符串转换为时间戳。
接下来,使用`date()`函数获取年份和月份,并使用`date('Y-m-01', $timestamp)`和`date('Y-m-t', $timestamp)`分别获取给定时间戳所在月份的起始日期和结束日期。
最后,返回一个包含年份、月份、起始日期、结束日期和描述数据的关联数组。
你可以在FastAdmin框架中调用这个函数来获取指定时间戳所在月份的相关数据。
阅读全文