|
|
|
วิธีการเปลี่ยนวันที่ในการแสดงผล จาก 01-01-2018 เป็น 01 มกราคม 2561 |
|
|
|
|
|
|
|
ขอบคุณครับ
|
|
|
|
|
Date :
2018-08-01 15:36:34 |
By :
1711167185640399 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<?php
function DateThai($strDate)
{
$strYear = date("Y",strtotime($strDate))+543;
$strMonth= date("n",strtotime($strDate));
$strDay= date("j",strtotime($strDate));
$strMonthCut = Array("","ม.ค.","ก.พ.","มี.ค.","เม.ย.","พ.ค.","มิ.ย.","ก.ค.","ส.ค.","ก.ย.","ต.ค.","พ.ย.","ธ.ค.");
$strMonthThai=$strMonthCut[$strMonth];
return "$strDay $strMonthThai $strYear";
}
?>
ดัดแปลงดูครับ
|
|
|
|
|
Date :
2018-08-01 16:50:58 |
By :
2037881702931155 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|