|
|
|
แปลงวันที่เป็นไทย จาก 07/05/2556 เป็น วันอาทิตย์ ที่7 เดือน พฤษภาคม พ.ค. 2556 |
|
|
|
|
|
|
|
Code (PHP)
function DateThais($strDate){
$strYear = date("Y",strtotime($strDate))+543;
$strMonth= date("n",strtotime($strDate));
$strDay= date("j",strtotime($strDate));
//$strHour= date("H",strtotime($strDate));
//$strMinute= date("i",strtotime($strDate));
//$strSeconds= date("s",strtotime($strDate));
$strMonthCut = Array('','มกราคม','กุมภาพันธุ์','มีนาคม','เมษายน','พฤษภาคม','มิถุนายน','กรกฏาคม','สิงหาคม','กันยายน','ตุลาคม','พฤศจิกายน','ธันวาคม');
$strMonthThai=$strMonthCut[$strMonth];
return "$strDay $strMonthThai $strYear";
}
|
|
|
|
|
Date :
2013-01-08 23:25:03 |
By :
Manussawin |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณคับ
แล้ววัน จันทร์ อังคาร เราจะแสดงยังงัยเหรอคับ
|
|
|
|
|
Date :
2013-01-08 23:38:36 |
By :
assam |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
$Dayname= date("w",strtotime($strDate));
มันจะได้ 0 - 6 [0 (for Sunday) through 6 (for Saturday)]
|
|
|
|
|
Date :
2013-01-09 09:19:44 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|