|
|
|
เรียกจากฐานข้อมูล เป็น yyyy-mm-dd จะแปลงเป็น dd-mm-yyyy ทำไงครับ |
|
|
|
|
|
|
|
เวลาเรียกมาจากฐานข้อมูลก็ ออกมาเป็น 2012-08-26
ผมอยากให้มันออกมาเป็น 26-08-2555 อ่ะครับ
ผมลอง โค๊ตตัวนี้ดูแล้ว ไม่ได้ครับ
Code (PHP)
<?php
function DateThai($strDate)
{
$arrDate = explode("/", $strDate);
$strYear = $arrDate[0];
$strMonth= $arrDate[1];
$strDay= $arrDate[2];
$strMonthCut = Array("","ม.ค.","ก.พ.","มี.ค.","เม.ย.","พ.ค.","มิ.ย.","ก.ค.","ส.ค.","ก.ย.","ต.ค.","พ.ย.","ธ.ค.");
$strMonthThai=$strMonthCut[$strMonth];
return "$strDay $strMonthThai $strYear";
}
$strDate = $objResult['day_booking'];
echo "ThaiThai : ".DateThai($strDate);
?>
Tag : PHP
|
|
|
|
|
|
Date :
2012-08-27 00:36:56 |
By :
B[O]YA |
View :
1543 |
Reply :
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$arrDate = explode("/", $strDate);
ถ้าออกจาก db เป็น 2012-08-26 ก็เปลี่ยนเป็น
$arrDate = explode("-", $strDate); เพื่อให้มันแยกข้อมูล โดยใช้ - ตัดแทนครับ
|
|
|
|
|
Date :
2012-08-27 03:18:04 |
By :
deawx |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|