0

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());
4

2 に答える 2

3

必要なのはそれだけdate("Y-m-d",$newtime);です。

于 2012-04-19T19:34:26.550 に答える
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

?>

于 2017-04-04T19:16:12.790 に答える