|
|
|
ถามเรื่องการนับวันที่ วันที่พิพม์ลงไปเองโดยมี 3txtbox ตย 15พ.ค.2552 นับวันที่ถึงปัจจุบันเป็นกี่วันสามารถใช้ |
|
|
|
|
|
|
|
ใส่แบบนี้ใช้ได้ไหมครับ
<?php
function DateDiff($strDate1,$strDate2)
{
return (strtotime($strDate2) - strtotime($strDate1))/ ( 60 * 60 * 24 ); // 1 day = 60*60*24
}
function TimeDiff($strTime1,$strTime2)
{
return (strtotime($strTime2) - strtotime($strTime1))/ ( 60 * 60 ); // 1 Hour = 60*60
}
function DateTimeDiff($strDateTime1,$strDateTime2)
{
return (strtotime($strDateTime2) - strtotime($strDateTime1))/ ( 60 * 60 ); // 1 Hour = 60*60
}
echo "Date Diff = ".DateDiff("<?=$_GET["datem3"].?>-<?=$_GET["datem2"].?>-<?=$_GET["datem1"].?>","2009-04-31")."<br>";
echo "Time Diff = ".TimeDiff("00:00","19:00")."<br>";
echo "Date Time Diff = ".DateTimeDiff("2008-08-01 00:00","2008-08-01 19:00")."<br>";
?>
|
|
|
|
|
Date :
2009-05-17 10:43:27 |
By :
evekrub |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|