|
|
|
ใคร เคยเจอปัญหาวันที่เบิ้ลในฟังก์ชั่น mktime บ้างครับช่วนแนะนำผมที |
|
|
|
|
|
|
|
Code (PHP)
<?php
$startdate='10/10/2009';
$enddate ='29/10/2009';
list($sd,$sm,$sy) = explode("/",$startdate);
list($ed,$em,$ey) = explode("/",$enddate);
$start=@mktime(0,0,0,$sm,$sd,$sy);
$end=@mktime(0,0,0,$em,$ed,$ey);
while($start<=$end){
echo date('d/m/Y',$start)."<br>\n" ;
$start +=(24*60*60);
}
?>
result ที่ได้นะครับ
10/10/2009
11/10/2009
12/10/2009
13/10/2009
14/10/2009
15/10/2009
16/10/2009
17/10/2009
18/10/2009
19/10/2009
20/10/2009
21/10/2009
22/10/2009
23/10/2009
24/10/2009
25/10/2009
25/10/2009
26/10/2009
27/10/2009
28/10/2009
ผม เลยลองเปลี่ยนเป็นปี 2008 ดูแต่กลัวเป็น วันที่ 26 เบิ้ล 2 วัน ไม่ทราบใครเคยเจอเบ้างครับ
Tag : - - - -
|
|
|
|
|
|
Date :
2010-02-16 12:46:30 |
By :
meepoohbugbear |
View :
825 |
Reply :
0 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|