|
|
|
แนวคิดวิธีการทำจองห้องประชุม ให้รู้ว่าเราได้จองระหว่างวันที่เริ่มต้น ถึงสิ้นสุด เป็นเวลากี่วัน มีวันที่เท่าไหร่บ้าง จะต้องทำอย่างไรครับ |
|
|
|
|
|
|
|
Code (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("2008-08-01","2008-09-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>";
//echo"".(strtotime(2008-08-01)+(( 60 * 60 * 24)*1))."<br>";
//echo"".date('Y-m-d',strtotime("+1 day"))."<br>";
$date_start = "2008-08-01";
$date_end = "2008-09-30";
$num_date = DateDiff($date_start,$date_end);
echo"วันที่เริ่มต้น : ".$date_start."<br>";
echo"วันที่สิ้นสุด : ".$date_end."<br>";
echo"จำนวนวัน : ".$num_date."<br>";
for($i=0;$i<=$num_date;$i++){
$plus_date = "+".$i." "."day";
echo date("Y-m-d", strtotime($plus_date,strtotime($date_start)))."<br>";
}
|
|
|
|
|
Date :
2010-11-21 15:18:23 |
By :
mint45 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|