欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php应用mktime获取时间戳的例子分析

程序员文章站 2022-05-14 23:42:16
...
  1. $now = mktime(0,0,0,date("m"),date("d"),date("Y"));
  2. echo "now is ".date("Y/m/d", $now);
复制代码

显示结果: now is 2012/05/30 显然这不是我想要的结果。 于是,按照旧有的思维,想当然的改造成下面这个形式:

  1. $now = mktime(date("h"),date("M"),date("s"),date("m"),date("d"),date("Y"));
  2. echo "now is ".date("Y/M/d h:i:s", $now);
复制代码

注意红色的部分,通常如果月份用m,那么分钟就应该是M。或者前者用M,后者用m。 显示结果: Warning: mktime() expects parameter 2 to be long, string given in D:\usr\webroot\testPHP\index.php on line 46 now is 1970/01/01 08:Jan:00

正确答案是这样的:

  1. $now = mktime(date("h"),date("i"),date("s"),date("m"),date("d"),date("Y"));
  2. echo "now is ".date("Y/m/d h:i:s", $now);
复制代码

哈哈~是“i”而不是什么m或者M,这里给出大家这个示例只是想让PHP的初学少走一些弯路。 至于M是什么意思,聪明的,你肯定明白的。 显示结果: now is 2012/05/30 04:54:25

>>> 您可能感兴趣的文章: php中time(),date(),mktime()的区别详解 php中time()和mktime()用法的区别分析 php中strtotime()与mktime() 的Y2K38漏洞 2038年问题