| |
| # ลบวันที่ เพื่อให้ได้ค่าวัน |
|
|
|
$str = "Jul 02 2013"; |
|
$str = strtotime(date("M d Y ")) - (strtotime($str)); |
|
echo floor($str/3600/24); |
|
|
|
# ลบวันที่ เพื่อให้ได้ค่าชั่วโมง |
|
|
|
$str = "Jul 02 2013"; |
|
$str = strtotime(date("M d Y ")) - (strtotime($str)); |
|
echo floor($str/3600); |
|
|
|
|
|
# ลบวันที่ เพื่อให้ได้ค่านาที |
|
|
|
$str = "Jul 02 2013"; |
|
$str = strtotime(date("M d Y ")) - (strtotime($str)); |
|
echo floor($str/60); |
|
|
| |