|
|
|
แปลงวันที่และเวลาจากฐานข้อมูล ให้เป็นวันที่แบบภาษาไทยปกติ |
|
|
|
|
|
|
|
สร้างฟังก์ชั่นใช้เองซิครับ ไม่ยากหรอกเสียเวลากับมันซะหน่อย
จะได้เรียนรู้เพิ่มเติมด้วย
function thaidate(พารามิเตอร์){
..... ทำการแปลงข้อมูล
return ข้อมูลที่แปลงแล้ว
}
เรียกใช้ก็ง่ายๆ
echo thaidate("2013-12-20 24:59:59");
สิ่งที่ต้องใช้ในการแปลงข้อมูล คือ ฟังก์ชั่ร explode และข้อมูลที่อยู่ในรูปแบบ array
|
ประวัติการแก้ไข 2014-02-27 15:40:03
|
|
|
|
Date :
2014-02-27 15:34:07 |
By :
sakuraei |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
there is the terrible question.
where were you come from ... ???
how did you ask very simple thing ?
you're too lazy.
|
|
|
|
|
Date :
2014-02-27 15:47:15 |
By :
Have no thai keyboard |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<?php
Class func{
function mothengmini($data){
$mothcheck =
array("moth"=>array("01"=>"Jan","02"=>"Feb","03"=>"Mar","04"=>"Apr","05"=>"May","06"=>"Jun","07"=>"July","08"=>"Aug","09"=>"sep","10"=>"Oct","11"=>"Nov","12"=>"Dec"));
return $mothcheck["moth"][$data];
}
function mothengfull($data){
$mothcheck =
array("moth"=>array("01"=>"January","02"=>"Febuary","03"=>"Mar","04"=>"April","05"=>"May","06"=>"June","07"=>"July","08"=>"August","09"=>"september","10"=>"October","11"=>"November","12"=>"December"));
return $mothcheck["moth"][$data];
}
function moththai($data){
$mothcheck =
array("moth"=>array("01"=>"มกราคม","02"=>"กุมภาพันธุ์","03"=>"มีนาคม","04"=>"เมษายน","05"=>"พฤษภาคม","06"=>"มิถุุนายน","07"=>"กรกฎาคม","08"=>"สิงหาคม","09"=>"กันยายน","10"=>"ตุลาคม","11"=>"พฤศจิกายน","12"=>"ธันวาคม"));
return $mothcheck["moth"][$data];
}
function datemoth($data,$check){
$data = explode("-",$data);
$day = $data[0];
$moth = $data[1];
if($check == "mini"){
$moth2 = $this->mothengmini($moth);
$year = $data[2];
}
else if($check == "full"){
$moth2 = $this->mothengfull($moth);
$year = $data[2];
}
else if($check == "thai"){
$moth2 = $this->moththai($moth);
$year = $data[2]+543;
}
return $day." ".$moth2." ".$year;
}
}
$fnc = new func();
echo "จัดให้ครับ"."<br>";
echo $fnc->datemoth("27-02-2014","thai")."<br>";
echo $fnc->datemoth("27-02-2014","mini")."<br>";
echo $fnc->datemoth("27-02-2014","full")."<br>";
?>
|
|
|
|
|
Date :
2014-02-27 17:22:57 |
By :
workbyrthai |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function thai($bbb)
{
$d2 = substr($bbb, 0, 2);
$m2 = substr($bbb,3, 2);
$y3 = substr($bbb, 6, 4) ;
$h2 = substr($bbb, 10, 6);
$y4=$y3+"543";
if($m2=="01"){$m2="มกราคม";}
if($m2=="02"){$m2="กุมภาพันธ์";}
if($m2=="03"){$m2="มีนาคม";}
if($m2=="04"){$m2="เมษายน";}
if($m2=="05"){$m2="พฤษภาคม";}
if($m2=="06"){$m2="มิถุนายน";}
if($m2=="07"){$m2="กรกฎาคม";}
if($m2=="08"){$m2="สิงหาคม";}
if($m2=="09"){$m2="กันยายน";}
if($m2=="10"){$m2="ตุลาคม";}
if($m2=="11"){$m2="พฤศจิกายน";}
if($m2=="12"){$m2="ธันวาคม";}
if ($bbb == "")
{
return "";
} else
{
return $d2 . " " . $m2 . " " . $y4." เวลา".$h2." น.";
}
}
|
|
|
|
|
Date :
2014-02-27 17:24:42 |
By :
apisitp |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณทุกท่านนะคัฟ
|
|
|
|
|
Date :
2014-02-27 18:13:37 |
By :
kunnawut |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|