mktime转换秒到日期

时间:2012-04-19 19:32:50

标签: php

我坚持如何使用mktime。我如何获得取消禁令的日期?

$time = strtotime($banrow['time']); //when user got banned

    //1 week

        $banduration = 60*60*24*7;
        $newtime = $time+$banduration;


        echo date('Y-m-d',mktime());

2 个答案:

答案 0 :(得分:3)

只需date("Y-m-d",$newtime);即可。

答案 1 :(得分:0)

使用下面的代码作为示例来了解它是如何工作的

$time = mktime(11, 14, 54, 8, 12, 2014);
//mktime(hour,minute,second,month,day,year) as the right order

echo "Create time is ".date('Y-m-d h:i:s',$time);// year first
echo "<br>";
echo "Create time is ".date('d-m-Y h:i:s',$time);//day first
echo "<br>";
echo "Year is ".date('Y',$time);//Just print Year
echo "<br>";
echo "Month is ".date('m',$time);//just print month
//use date(format,optional)
//the format can be what you want it to be display

输出

  Create time is 2014-08-12 11:14:54
  Create time is 12-08-2014 11:14:54
  Year is 2014
  Month is 08

&GT;