Jump to content

PHP numbers to months? Urgent help please!


dumpty

Recommended Posts

Hey

 

I'm creating a calendar type thing. The variable $month will be a value ranging from 1-12. I need somehow to translate 1, the first month, in january - 2 into february - 3 into march etc.

 

It auto increases so i cant just change the value to jan, feb. $month has to server two purposes and i dont know how to get it to turn "1" into "january".

 

Any ideas? Could somebody please give me some code for it or even a pointer? Its quite important!

 

Thanks

Link to comment
https://forums.phpfreaks.com/topic/66646-php-numbers-to-months-urgent-help-please/
Share on other sites

you don't need an array

 

<?php
$month = 3;
$monthname = date('F', mktime(0,0,0,$month));
echo $monthname;   // March
?>

 

for convenince, make it a function

<?php

function mn($m)
{
    return date('F', mktime(0,0,0,$m)); 
}

$month = 3;

echo mn($month);   // March
?>

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.