我正在循环当月的日子,我也想显示当月的平日,但我不知道。
//showing the days number of the current month
$currentDays = date('d');
for($i=1;$i<=$currentDays;$i++)
{
//print the day number
echo $i.'\n';
}
我试图根据当月构建一个12个月的数组,所以当月是3月份,我的数组应该如下所示: const months =[“March”, “February”, “January”, “December”, “November”, “October”] etc, all the way to 12 previous months
我需要在当月的第一天到当月的最后一天找到某些数据。
select count(*) from q_aggr_data as a
where a.filial_='fil1'
and a.operator_ like 'unit%'
and date_trunc('day',a.s_end_)='"+ date_to_search+ "'
group by a.s_name_,date_trunc('day',a.s_end_)
date
好吧我放弃了。
我在试着做这个剧本
<script>
$(document).ready(function(){
var d = new Date();
n = d.getMonth();
if (n == 11) {
src="extrafiles/effect/snow.js";
}
});
</script>
当月份是十二月时,打电话给"snow.js“。
但不管用。想法?
编辑:
也许这是个更好的方法?
if ( d.getMonth().match(11) ){ //do调用snow.j
我使用它来比较年份和月份,但是当月份小于当前月份时,即使年份大于当前年份,它也会失败
SELECT * FROM DUMMY_TABLE WHERE
YEAR(PREV_ELIG_REV_DT) >= YEAR(CURRENT TIMESTAMP)
AND MONTH(PREV_ELIG_REV_DT) >= MONTH(CURRENT TIMESTAMP)