strtotime
PHP內建時間函數
(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."秒"; ?>
以上是php中strtotime什麼意思的詳細內容。更多資訊請關注PHP中文網其他相關文章!