Jump to content

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
?>

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.