Home > Article > Web Front-end > Use VBS to get the day before the current date and correct the output format
Method 1 to get the current date:
Currentdate1=date() msgbox Currentdate1
Method 2 to get the current date:
Currentdate2=year(Now)&"-"&Month(Now)&"-"&day(Now) msgbox Currentdate2
Additional one: If the date you want to get is preceded by 1 digit, add 0 in front, for example May 16, 2016, if the directory is 2016516, it is not as good as 20160516
ystr=year(Now) mstr=Month(Now) if len(mstr)<2 then mstr="0"&mstr dstr=day(Now) dateml=ystr&mstr&dstr msgbox(dateml)
Get the current time:
CurrentTime=Hour(Now)&":"&Minute(Now)&":"&Second(Now) m = "当前时间"& CurrentTime msgbox m
Use VBS under windows to get the day before the current date, and correct the output format
my_date1 = DateAdd("d",-1,date)
Function: Take the day before the current time (the current time is based on the system time) and assign the result to the variable my_date1
my_date2 = DatePart("yyyy",my_date1) & "-" & Right("0" & DatePart("m",my_date1), 2) & "-" & Right("0" & DatePart("d",my_date1), 2)
Function: Regardless of the time format set by the system (default is YYYY/M/D), modify the output time format to YYYY-MM-DD, and assign the result to the variable my_date2
View the output time:
msgbox my_date1
msgbox my_date2
The above script was tested under windows2003 and 2008 and passed
More uses VBS to get the day before the current date And for articles related to correcting the output format, please pay attention to the PHP Chinese website!