|
|
|
ดู code ให้หน่อยครับ ว่าทำไมผมมปีปัญหา กับ 543 ไม่จบไม่สิ้น ซะที |
|
|
|
|
|
|
|
การแปลง 30-07-2555 เป็น 30-07-2012
Code (PHP)
$yea = 30-07-2555; //สมมุติเก็บในตัวแปร yea
$cut = explode("-",$yea);
$date_new = $cut[2]-543."-".$cut[1]."-".$cut[0]; // ผลลัพจะได้ 2012-07-30 สำหรับเก็บลงฐานข้อมูล
ส่วนของการแสดงผล
Code (PHP)
function ThaiMY($strDate)
{
$strYear = date("Y",strtotime($strDate))+543;
$strMonth= date("n",strtotime($strDate));
//$strDay= date("j",strtotime($strDate));
$strMonthCut = Array("","มกราคม","กุมภาพันธ์","มีนาคม","เมษายน","พฤษภาคม" ,"มิถุนายน","กรกฎาคม","สิงหาคม","กันยายน","ตุลาคม","พฤศจิกายน","ธันวาคม");
$strMonthThai=$strMonthCut[$strMonth];
return "$strMonthThai $strYear";
}
//ตัวอย่างการใช้งานเช่น
echo ThaiMY($date_new); // ผลลัพคือ 30 กรกฎาคม 2555
ลองดูละกันครับ
|
ประวัติการแก้ไข 2012-07-31 05:50:35
|
|
|
|
Date :
2012-07-31 05:40:15 |
By :
000su000 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|