|
|
|
convert วันที่จากปี เดือน วัน ให้เป็น วันเดือนปี |
|
|
|
|
|
|
|
SELECT CONVERT(datetime,RIGHT(d,4)+SUBSTRING(d,3,2)+LEFT(d,2))
FROM (SELECT '18062007' AS d) x
|
|
|
|
|
Date :
31 ต.ค. 2550 14:04:30 |
By :
beer |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<?
$dat = "2007/12/5";
list($year,$month,$day) = split("/",$dat);
echo $day."/".$month."/".$year;
?>
อีกทางเลือก
|
|
|
|
|
Date :
31 ต.ค. 2550 17:07:57 |
By :
888 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ด้วยคน ให้ 3 ฟังก์ชันเลย
// แปลงข้อมูลวันที่ d/m/Y เป็น Y-m-d
function date_ori2db($ori)
{
$db=substr($ori,6,4)."-".substr($ori,3,2)."-".substr($ori,0,2);
return $db;
}
// แปลงข้อมูลวันที่ Y-m-d เป็น d/m/Y
function date_db2ori($db)
{
if(empty($db) || (strlen($db)==0)) {$ori="ไม่ระบุ";}
else{$ori=substr($db,8,2)."/".substr($db,5,2)."/".substr($db,0,4);}
return $ori;
}
// แปลงข้อมูลวันที่ Y-m-d เป็น วันที่แบบย่อของไทย
function date_db2thaishort($db)
{
$thai_shot_month=array("","ม.ค.","ก.พ.","มี.ค.","เม.ย.","พ.ค.","มิ.ย.","ก.ค.","ส.ค.","ก.ย.","ต.ค.","พ.ย.","ธ.ค.");
if(empty($db) || (strlen($db)==0)) {$ori="ไม่ระบุ";}
else{
$mon=intval(substr($db,5,2));
$ori=substr($db,8,2)." ".$thai_shot_month[$mon]. " ".(substr($db,0,4)+543);}
return $ori;
}
|
|
|
|
|
Date :
31 ต.ค. 2550 22:11:31 |
By :
dekcom |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|