PHP convert month,year to Thai date Turn Back
2015-01-24 14:20:22
PHP ใช้แปลง date เป็นเดือนไทย พ.ศ.
$month_arr=array("1"=>"มกราคม","2"=>"กุมภาพันธ์","3"=>"มีนาคม","4"=>"เมษายน","5"=>"พฤษภาคม","6"=>"มิถุนายน","7"=>"กรกฎาคม","8"=>"สิงหาคม","9"=>"กันยายน","10"=>"ตุลาคม","11"=>"พฤศจิกายน","12"=>"ธันวาคม");echo date("d")." ".$month_arr[date("n")]." ".(date("Y")+543);// Output: 24 มกราคม 2558