|
|
|
--- เขียนระบุวันเป็นอาเรย์ยังไงครับ ใช้ strtotime เข้ามาช่วยแล้ว งง!!! --- |
|
|
|
|
|
|
|
คือผมทำเป็นตารางวันที่ มันก็จะออกมา
1 | 2 | 3 | 4 | 5 | 6 ... 30
แต่ผมต้องการระบุวันไปด้วยอะครับให้ผลมันออกมา
1 Sat | 2 Sun | 3 Mon | 4 Tue | 5 Wed | 6 Thu ... 30 Sun
จากโค๊ดผม
Code (PHP)
$date = date(d);
$d = $date-1;
$month = array(0,31,28,31,30,31,30,31,31,30,31,30,31);
$week = array("Sun","Mon","Tue","Wed","Thu","Fri","Sat");
<select name="selectmonth">
<option value="">- เลือกเดือน -</option>
</select>
for($day=1;$day<=$month [$_GET['selectmonth']];$day++)
{
$array_date = getdate(strtotime("-$d day")) ;
$d--;
?>
<td width="80px"><b><?=$day." ".$week[$array_date[weekday]];?></b></td>
<?PHP
}
?>
ผลที่ได้ ก็คือ 1 Sat | 2 Sun | 3 Mon | 4 Tue | 5 Wed | 6 Thu ... 30 Sun ตามนี้เป๊ะๆ เลยครับ
แต่ พอผม select เดือนอื่นๆ มันก็เริ่มวันที่ 1 เป็นวันเสาร์ เพราะเดือนนี้ วันที่1 เริ่มวันเสาร์ อาจจะผิดที่ $array_date = getdate(strtotime("-$d day")) ; ตรง getdate อะครับ อยากให้ช่วยดูที ถ้าเลือกสิงหาคม ก็น่าจะให้ขึ้น 1 Wed | 2 Thu | .... 31
Tag : PHP, HTML/CSS
|
|
|
|
|
|
Date :
2012-09-06 07:47:03 |
By :
help me |
View :
995 |
Reply :
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขุดๆคับ ช่วยทีคับ
|
|
|
|
|
Date :
2012-09-07 07:23:56 |
By :
help me |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class Calendar{
protected $time;
protected $timezone;
public $isLeapYear;
public function __construct($year) {
$this->timezone = new DateTimeZone('Asia/Bangkok');
$this->time = DateTime::createFromFormat('Y-n-j', $year.'-1-1', $this->timezone);
$this->isLeapYear = checkdate(2, 29, $this->time->format('Y'));
}
protected function getMonthFirstDay($month){
$format = sprintf('%d-%d-1',$this->time->format('Y'),$month);
return DateTime::createFromFormat('Y-n-j', $format, $this->timezone);
}
public function getMonthDays($month){
$interval = DateInterval::createFromDateString('+1day');
$time = $this->getMonthFirstDay($month);
$a = array();
while($time->format('n') == $month){
$a[] = clone $time;
$time->add($interval);
}
return $a;
}
public static function monthName($month){
$a = array(1=>'มกราคม','กุมภาพันธ์','มีนาคม','เมษายน',
'พฤษภาคม','มิถุนายน','กรกฎาคม','สิงหาคม','กันยายน'
,'ตุลาคม','พฤศจิกายน','ธันวาคม');
return $a[$month];
}
public static function dayName(DateTime $date){
$a = array('อาทิตย์','จันทร์','อังคาร','พุธ','พฤหัสบดี','ศุกร์','เสาร์');
return $a[$date->format('w')];
}
}
header('Content-type:text/html;charset=utf-8');
#header('Content-type:text/html;charset=tis-620');
$c = new Calendar(2012);
echo '<h1>Calendar 2012</h1>';
foreach(range(1,12) as $month){
echo '<h2>',Calendar::monthName($month),'</h2>';
foreach($c->getMonthDays($month) as $d){
echo Calendar::dayName($d),' ',$d->format('j'),'<','br/>';
}
}
http://web-programming-bookmark.blogspot.com/2012/09/php-calendar-class.html
http://web-programming-bookmark.blogspot.com/2010/12/php-calendar.html
|
|
|
|
|
Date :
2012-09-07 23:25:25 |
By :
num |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|