gpt4 book ai didi

javascript - 我想在 php、JS 或 Jquery 中获取相对于当前日期的上周日期

转载 作者:行者123 更新时间:2023-11-28 05:27:19 28 4
gpt4 key购买 nike

我需要在 x 轴上的折线图中显示当前星期的日期。

我需要获取从今天开始的一周前的日期。前任。如果今天是 7 号,我需要获取从 1 号到 7 号的值数组形式的日期。我是 php 新手,想要一个简单易懂的解决方案。这是我的 js 显示折线图..

$(function () {
$('#container1').highcharts({
title: {
text: '',
x: -20 //center
},
/*subtitle: {
text: 'Source: WorldClimate.com',
x: -20
},*/
xAxis: {
categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun',
'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
},
yAxis: {
title: {
text: ''
},
plotLines: [{
value: 0,
width: 1,
color: '#808080'
}]
},
tooltip: {
valueSuffix: ''
},
legend: {
layout: 'vertical',
align: 'right',
verticalAlign: 'middle',
borderWidth: 0
},
series: [{
name: 'Total Requirements',
data: [7.0, 6.9, 9.5, 14.5, 18.2, 21.5, 25.2, 26.5, 23.3, 18.3, 13.9, 9.6]
},{
name: 'Requirements with no Submissions',
data: [1.5, 0.6, 3.5, 8.4, 13.5, 17.0, 18.6, 17.9, 14.3, 9.0, 3.9, 1.0]
},{
name: 'Requirements to which Profiles were Submitted',
data: [3.9, 4.2, 5.7, 8.5, 11.9, 15.2, 17.0, 16.6, 14.2, 10.3, 6.6, 4.8]
}]
});

我需要日期数组才能将它们发送到类别,而不是其中的默认值并显示在 x 轴上。我尝试了这个东西,但它给了我一些不需要的值,而且只有当周是在本周的中间,而不是移动到前一周,需要计算 7 天。

<?php
$dt = new DateTime();
$dates = [];
for ($d = 1; $d <= 6; $d++) {
$dt->setISODate($dt->format('o'),
$dt->format('W'), $d);
$dates[$dt->format('D')] = $dt->format('m-d-Y');
$string=implode(",",$dates);
echo $string;
}
?>

如果今天是第七天,无论星期几,我的输出必须是 10/1 10/2 10/3 ... 10/7。

最佳答案

您可以尝试这个,首先获取今天的日期,然后根据您的需要向后或向前运行循环。

P.S: 如果您要使用不同的时区进行管理,则需要进行 UTC 偏移等

     $date=date_create(DATE("d-m-Y"));

$array=[];
array_push($array, date_format($date,"m/j"));
for($i=7;$i>0;$i--)
{
date_sub($date,date_interval_create_from_date_string("1 days"));
array_push($array, date_format($date,"m/j"));
}
echo json_encode(array_reverse($array));// or you can do echo json_encode($array) to return json

根据您描述的输出,您将需要更改日期格式,因此请使用

更改代码
array_push($array, date_format($date,"m/j"));

你将得到以下输出

["10\/7","10\/8","10\/9","10\/10","10\/11","10\/12","10\/13","10\/14"]

当前日期是 10 月 14 日

关于javascript - 我想在 php、JS 或 Jquery 中获取相对于当前日期的上周日期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40034983/

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