通過字符獲取時間戳
你可以使用strtotime()函數獲取時間戳
這是一個簡單例子
<?php
$mytime=strtotime(
echo
?>
輸出
PHP在解釋字符方面是相當靈巧的
$nextfriday=strtotime(
$nextmonth=strtotime(
$lastchristmas=strtotime(
獲取日期范圍
strtotime返回的值被轉換為數字
<?php
$startdate = strtotime(
$enddate = strtotime(
$currentdate = $startdate;
echo
while($currentdate < $enddate)
echo
$currentdate = strtotime(
endwhile;
echo
?>
你將會得到如下的結果
Aug
Aug
Sep
Sep
Sep
Sep
Oct
Oct
Oct
Oct
Oct
Nov
Nov
Nov
Nov
Dec
注意一下這行
到某一個日期的天數
使用計算器的時候
$someday = strtotime(
$daysUtilDate = ceil(($someday
echo
首先
[
From:http://tw.wingwit.com/Article/program/PHP/201311/21639.html