获取当前日期

这里要用到date函数的第三种形式,下面是获得当前日期

(set ‘today (date (date-value) 0 "%Y%m%d"))

(date-value) 返回的是1970年0点累计的秒数,作为date函数的第一个参数

第二个参数是偏移的分钟,0表示没有偏移,就是现在。 这个参数主要用来做时区转换

第三个参数定义日期格式,参考下表:

format description
%a abbreviated weekday name according to the current locale
%A full weekday name according to the current locale
%b abbreviated month name according to the current locale
%B full month name according to the current locale
%c preferred date and time representation for the current locale
%d day of the month as a decimal number (range 01–31)
%H hour as a decimal number using a 24-hour clock (range 00–23)
%I hour as a decimal number using a 12-hour clock (range 01–12)
%j day of the year as a decimal number (range 001–366)
%m month as a decimal number (range 01–12)
%M minute as a decimal number
%p either ‘am‘ or ‘pm‘ according to the given time value or the corresponding strings for the current locale
%S second as a decimal number 0–61 (60 and 61 to account for occasional leap seconds)
%U week number of the current year as a decimal number, starting with the first Sunday as the first day of the first week
%w day of the week as a decimal, Sunday being 0
%W week number of the current year as a decimal number, starting with the first Monday as the first day of the first week
%x preferred date representation for the current locale without the time
%X preferred time representation for the current locale without the date
%y year as a decimal number without a century (range 00–99)
%Y year as a decimal number including the century
%z time zone or name or abbreviation (same as %Z on Win32, different on Unix)
%Z time zone or name or abbreviation (same as %z on Win32, different on Unix)
%% a literal ‘%‘ character

下面是使用了偏移参数计算昨天的日期:

(set ‘yesterday (date (date-value) (- (* 24 60)) "%Y%m%d"))

24小时乘以60分钟,结果加上负号

获取当前日期

时间: 2024-10-27 08:23:54

获取当前日期的相关文章

Js获取当前日期时间+日期印证+判断闰年+日期的天数差+日期格式化+JS判断某年某月有多少天

Js获取当前日期时间+日期验证+判断闰年+日期的天数差+日期格式化+JS判断某年某月有多少天 字符串转日期型+Js当前日期时间+日期验证+判断闰年+日期的天数差+日期格式化+日期所在年的第几周 日期时间脚本库方法列表Date.prototype.isLeapYear 判断闰年Date.prototype.Format 日期格式化Date.prototype.DateAdd 日期计算Date.prototype.DateDiff 比较日期差Date.prototype.toString 日期转字符

python 获取当前日期 星期

from datetime import datetime d =datetime.today()     #获取当前日期时间 d.isoweekday()           #获取时间周几 python 获取当前日期 星期,布布扣,bubuko.com

PHP获取当前日期及本周一是几月几号的方法

这篇文章主要介绍了PHP获取当前日期及本周一是几月几号的方法,涉及php时间戳.日期转换与运算相关操作技巧,需要的朋友可以参考下 本文实例讲述了PHP获取当前日期及本周一是几月几号的方法.分享给大家供大家参考,具体如下: <?php header("content-type:text/html;charset=utf-8"); date_default_timezone_set('PRC'); function getWeek($unixTime=''){ $unixTime=i

mysql 获取当前日期前后的时间

selectsubdate(curdate(),date_format(curdate(),'%w')-1)//获取当前日期在本周的周一 selectsubdate(curdate(),date_format(curdate(),'%w')-7)//获取当前日期在本周的周日 这两句语句是mysql用来取当前日期的周一或周日的一个方法,那么这句如何运作的呢? %w是以数字的形式来表示周中的天数(0=Sunday,1=Monday,...,6=Saturday),0为周日,6为周六,跟我们一般的认知

mysql 获取当前日期及格式化[转]

MYSQL 获取当前日期及日期格式获取系统日期: NOW()格式化日期: DATE_FORMAT(date, format)注: date:时间字段format:日期格式 返回系统日期,输出 2009-12-25 14:38:59select now();输出 09-12-25select date_format(now(),'%y-%m-%d'); 根据format字符串格式化date值: %S, %s 两位数字形式的秒( 00,01, ..., 59)%I, %i 两位数字形式的分( 00,

python获取当前日期前后N天或N月的日期

# -*- coding: utf-8 -*- '''获取当前日期前后N天或N月的日期''' from time import strftime, localtime from datetime import timedelta, date import calendar year = strftime("%Y",localtime()) mon = strftime("%m",localtime()) day = strftime("%d",l

Javascript获取当前日期

实例:获取当前日期var CurrentTime = new Date().getFullYear() + "-" + parseFloat(new Date().getMonth() + 1) + "-" + new Date().getDate(); Javascript获取当前日期,布布扣,bubuko.com

c#获取当前日期时间

c#获取当前日期时间 我们可以通过使用DataTime这个类来获取当前的时间.通过调用类中的各种方法我们可以获取不同的时间:如:日期(2008-09-04).时间(12:12:12).日期+时间(2008-09-04 12:11:10)等. //获取日期+时间DateTime.Now.ToString();            // 2008-9-4 20:02:10DateTime.Now.ToLocalTime().ToString();        // 2008-9-4 20:12:

Js获取当前日期时间及其它操作

var myDate = new Date();myDate.getYear();        //获取当前年份(2位)myDate.getFullYear();    //获取完整的年份(4位,1970-????)myDate.getMonth();       //获取当前月份(0-11,0代表1月)myDate.getDate();        //获取当前日(1-31)myDate.getDay();         //获取当前星期X(0-6,0代表星期天)myDate.getTi

PHP获取当前日期和时间格式化方法

使用函式 date() 实现 <?php echo $showtime=date("Y-m-d H:i:s");?> 显示的格式: 年-月-日 小时:分钟:妙 相关时间参数: a - "am" 或是 "pm" A - "AM" 或是 "PM" d - 几日,二位数字,若不足二位则前面补零; 如: "01" 至 "31" D - 星期几,三个英文字母; 如: