$date_range, 'custom_start' => $custom_start, 'custom_end' => $custom_end, 'period' => $period, 'start_date' => $start_date, 'end_date' => $end_date, 'start_date_sql' => $start_date_sql, 'end_date_sql' => $end_date_sql ]; } /** * 生成图表颜色数组 * * @param int $count 需要的颜色数量 * @param bool $transparent 是否透明 * @return array 背景色和边框色数组 */ function generateChartColors($count = 10, $transparent = true) { $colors = [ ['rgba(255, 99, 132, ' . ($transparent ? '0.7' : '1') . ')', 'rgba(255, 99, 132, 1)'], ['rgba(54, 162, 235, ' . ($transparent ? '0.7' : '1') . ')', 'rgba(54, 162, 235, 1)'], ['rgba(255, 206, 86, ' . ($transparent ? '0.7' : '1') . ')', 'rgba(255, 206, 86, 1)'], ['rgba(75, 192, 192, ' . ($transparent ? '0.7' : '1') . ')', 'rgba(75, 192, 192, 1)'], ['rgba(153, 102, 255, ' . ($transparent ? '0.7' : '1') . ')', 'rgba(153, 102, 255, 1)'], ['rgba(255, 159, 64, ' . ($transparent ? '0.7' : '1') . ')', 'rgba(255, 159, 64, 1)'], ['rgba(199, 199, 199, ' . ($transparent ? '0.7' : '1') . ')', 'rgba(199, 199, 199, 1)'], ['rgba(83, 102, 255, ' . ($transparent ? '0.7' : '1') . ')', 'rgba(83, 102, 255, 1)'], ['rgba(40, 159, 64, ' . ($transparent ? '0.7' : '1') . ')', 'rgba(40, 159, 64, 1)'], ['rgba(210, 199, 199, ' . ($transparent ? '0.7' : '1') . ')', 'rgba(210, 199, 199, 1)'] ]; $result = []; // 确保有足够的颜色 while (count($result) < $count) { foreach ($colors as $color) { $result[] = $color; if (count($result) >= $count) { break; } } } return array_slice($result, 0, $count); } /** * 格式化数值,处理空值和小数位数 * * @param mixed $value 要格式化的值 * @param int $decimals 小数位数 * @return string 格式化后的数值 */ function formatNumber($value, $decimals = 2) { if ($value === null || $value === '') { return '0'; } return number_format((float)$value, $decimals); } /** * 获取时间粒度对应的MySQL DATE_FORMAT格式 * * @param string $period 时间粒度 (day/week/month) * @return string MySQL DATE_FORMAT格式字符串 */ function getPeriodFormat($period) { switch ($period) { case 'week': return '%x-W%v'; // ISO year and week number case 'month': return '%Y-%m'; case 'day': default: return '%Y-%m-%d'; } }