|
|
|
อยากจะแสดงข้อมูล เช่นตอนเก็บข้อมูลเก็บข้อมูลเป็นรูปแบบ date ในฐานข้อมูลก็จะเป็น 2012-01-01 แต่เวลาจะดึงมาโชว์ อยากให้แสดงรูปแบบ 01-01-2012 มีวิธีไหมคะ |
|
|
|
|
|
|
|
apply ได้หลากหลายครับ
Code (PHP)
<?php
function DateThai($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, $strHour:$strMinute";
}
$strDate = "2008-08-14 13:42:44";
echo "ThaiCreate.Com Time now : ".DateThai($strDate);
?>
|
|
|
|
|
Date :
2012-09-19 06:16:31 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|