"", "1"=>"มกราคม", "2"=>"กุมภาพันธ์", "3"=>"มีนาคม", "4"=>"เมษายน", "5"=>"พฤษภาคม", "6"=>"มิถุนายน", "7"=>"กรกฎาคม", "8"=>"สิงหาคม", "9"=>"กันยายน", "10"=>"ตุลาคม", "11"=>"พฤศจิกายน", "12"=>"ธันวาคม" ); function thai_date($time){ global $thai_month_arr; $thai_date_return= "".date("j",$time); $thai_date_return.=" ".$thai_month_arr[date("n",$time)]; $thai_date_return.= " ".(date("Y",$time)+543); return $thai_date_return; } $thai_month_arr_short=array("ม.ค.","ก.พ.","มี.ค.","เม.ย.","พ.ค.","มิ.ย.","ก.ค.","ส.ค.","ก.ย.","ต.ค.","พ.ย.","ธ.ค."); function thai_date_short($time){ global $thai_month_arr_short; $thai_date_return= "".date("j",$time); $thai_date_return.=" ".$thai_month_arr_short[date("n",$time)]; $thai_date_return.= " ".(date("Y",$time)+543); return $thai_date_return; } ?>