Yngvarr

Generation

generate functionTue, 14 Feb 2023

return month text

function getMonthName($month) { if($month == 1) return "Jan"; if($month == 2) return "Feb"; if($month == 3) return "Mar"; if($month == 4) return "Apr"; if($month == 5) return "May"; if($month == 6) return "Jun"; if($month == 7) return "Jul"; if($month == 8) return "Aug"; if($month == 9) return "Sep"; if($month == 10) return "Oct"; if($month == 11) return "Nov"; if($month == 12) return "Dec"; } echo getMonthName(1); // Jan

Questions about programming?Chat with your personal AI assistant