我有一个控制器操作,在该操作中获取当前日期,如下所示:
$fullDate=date("Y-m-d");
$date = strtotime($fullDate);
$viewModel->setVariable("currentDate",$date);
// Here I would like to pass the variable to the View and then compare it with another date ...
使用上面的方法,我在做var_dump($currentDate)时得到了这个结果;
我需要一个JS函数来得到这个月的最后一个日期。举个例子,我需要这个月的最后一个星期三。
我将以年月日为论据。
getLastDayOfMonth('2022', '02', 'Wednesday');
function getLastDayOfMonth(year, month, day){
// Output should be like this
2022-02-23
(this is last Wednesday of the month, according to the arguments
我有这样一个数据框架:
print(df)
Metric TimeStamp Value
cpu 1642039200000 4
cpu 1642042800000 3
cpu 1642046400000 5
我需要将TimeStamp转换为可读取的时间戳年月日小时:min:sec
我试过:
导入日期
df['TimeStamp']=datetime.datetime.fromtimestamp(df['TimeStamp'])
似乎不起作用。