1. 程式人生 > >strtotime 時間戳的用法

strtotime 時間戳的用法

ast strtotime 時間 ember hpc 當前時間 用法 class php

若成功則返回時間戳,失敗則返回 FALSE。 php 4+

<?php echo(strtotime("now") . "<br>");//當前時間 2017/9/1 13:33:41 echo(strtotime("5 September 2016") . "<br>");//2016/9/5 0:0:0 echo(strtotime("+5 hours") . "<br>");//2017/9/1 18:33:41 當前時間加5小時 echo(strtotime("+1 week") . "<br>");//當前時間 + 1周 echo(strtotime("+1 week 3 days 7 hours 5 seconds") . "<br>"); //當前時間 + 1周 + 3天 + 7小時 + 5秒 echo(strtotime("next Monday") . "<br>");//當前時間的下周一 echo(strtotime("last Sunday"));//當前時間的上周日 ?>

strtotime 時間戳的用法