php strtotime,php中strtotime什么意思

strtotime

PHP内置时间函数

cc20f269f7f3db0812aff2bdd5a57905.png

(PHP 4, PHP 5)

strtotime()可以用英语的自然语言创建某个时刻的时间戳

函数语法:int strtotime(string $time[,int $now])

函数作用:将美国英语格式的日期时间字符串转换成unix时间戳。

函数例程(推荐学习:PHP编程从入门到精通)<?php

echo date("Y年n月j日",strtotime("now"));//2010年4月14日

echo date("Y年n月j日",strtotime("8 may 2008"));//2008年5月8日

echo date("Y年n月j日",strtotime("+1 day"));//2010年4月15日

echo date("Y年n月j日",strtotime("last monday"));//2010年4月12日

?>

实例<?php

//纪念日倒记时

$time1=strtotime("2010-7-18 9:9:9");

$time2=strtotime("2010-4-18 23:42:10");

$second=$time1-$time2;

$year=floor($second/3600/24/365);//年

$temp=$second-$year*365*24*3600;

$month=floor($temp/3600/24/30);//月

$temp=$temp-$month*30*24*3600;

$day=floor($temp/3600/24);//日

$temp=$temp-$day*3600*24;

$hour=floor($temp/3600);//小时

$temp=$temp-$hour*3600;

$minute=floor($temp/60);//分

$second1=$temp-$minute*60;//秒

echo "距离培训毕业还有".$year."年".$month."月".$day."天".$hour."小时".$minute."分".$second1."秒";

?>

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值