php 时间戳函数

来源:互联网 发布:网页设计 软件 编辑:程序博客网 时间:2024/05/21 08:50

1.mktime

mktime ($hour = null, $minute = null, $second = null, $month = null, $day = null, $year = null, $is_dst = null)

小时,分钟,秒数,月,日,年   mktime('17','23','35');

2.strtotime

strtotime(time,now)

参数描述time规定要解析的时间字符串。now用来计算返回值的时间戳。如果省略该参数,则使用当前时间。

<?phpecho(strtotime("now"));      现在的时间echo(strtotime("3 October 2005"));     2005年十月三号echo(strtotime("+5 hours"));           加五个小时echo(strtotime("+1 week"));           加一周echo(strtotime("+1 week 3 days 7 hours 5 seconds"));     加一周三天七小时五秒echo(strtotime("next Monday"));         下周一echo(strtotime("last Sunday"));         上周日?>

输出:

1138614504112829040011386325041139219304113950370911391804001138489200

0 0