|
|
|
สอบถามเกี่ยวกับการแปลงวันที่ จากวันที่ไปเป็นวัน จันทร์, อังคาร หน่อยครับ |
|
|
|
|
|
|
|
Code (PHP)
$thai_day_arr=array("อาทิตย์","จันทร์","อังคาร","พุธ","พฤหัสบดี","ศุกร์","เสาร์");
$thai_month_arr=array(
"0"=>"",
"1"=>"มกราคม",
"2"=>"กุมภาพันธ์",
"3"=>"มีนาคม",
"4"=>"เมษายน",
"5"=>"พฤษภาคม",
"6"=>"มิถุนายน",
"7"=>"กรกฎาคม",
"8"=>"สิงหาคม",
"9"=>"กันยายน",
"10"=>"ตุลาคม",
"11"=>"พฤศจิกายน",
"12"=>"ธันวาคม"
);
function thai_date($time){
global $thai_day_arr,$thai_month_arr;
$thai_date_return.= "วันที่ ".date("j",$time);
$thai_date_return.=" ".$thai_month_arr[date("n",$time)];
$thai_date_return.= " ".(date("Y",$time)+543);
return $thai_date_return;
}
function timethai($time1){
global $thai_day_arr,$thai_month_arr;
$thai_date_return.= " ".date("H:i",$time1)." น.";
return $thai_date_return;
}
วิธีใช้
Code (PHP)
<?php
$eng_date=strtotime($objResult["date"]);
echo thai_date($eng_date); ?>
ลองดูไม่รู้ใช้ที่จะเอาเปล่า
|
|
|
|
|
Date :
2013-05-24 15:29:05 |
By :
white31969 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
อีกตัวอย่างที่จะนำไป Apply ได้ครับ
PHP Checking Work Day , Holiday ตรวจสอบวันหยุด และวันหยุดราชการ
|
|
|
|
|
Date :
2013-05-25 07:39:04 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|