GetThaiDate
แปลง วันที รูป mktime ให้เป็นวันที่แบบไทย 12 กพ. 2550
ตัวอย่าง
<?php
$today = time(); //เวลา ตอนนี้
echo getthaidate( $today );
?>
<?php
function getthaidate( $today )
{
$ThaiSubMonth = array("", "มค.","กพ.","มีค.","เมย.","พค.","มิย.","กค.","สค.","กย.","ตค.","พย.","ธค." );
$day =(integer)date( "d" , $today );
$month = (integer)date( "m" , $today ); //ฟังก์ชั่น date จะคืนค่าเดือนเป็นเลข 2 หลัก ให้แปลงเป็นเลขหลักเดียว
$year = date( "Y", $today ) +543;
return( $day." ".$ThaiSubMonth[$month]." ".$year );
};
?>
ตัวอย่าง
<?php
$today = time(); //เวลา ตอนนี้
echo getthaidate( $today );
?>