How can i get month in php?

I want to be able to figure out the month of the current date variable. I'm ex vb.net and the way to do it there is just date.Month. How do I do this in PHP?

Thanks,

Jonesy

I used date_format($date, "m"); //01, 02..12

This is what I wanted, question now is how do I compare this to an int since $monthnumber = 01 just becomes 1

John

11.9k11 gold badges90 silver badges156 bronze badges

asked Sep 22, 2010 at 9:51

iamjonesyiamjonesy

24.2k40 gold badges134 silver badges206 bronze badges

2

See http://php.net/date

date('m') or date('n') or date('F') ...

Update

m Numeric representation of a month, with leading zeros 01 through 12

n Numeric representation of a month, without leading zeros 1 through 12

F Alphabetic representation of a month January through December

....see the docs link for even more options.

answered Sep 22, 2010 at 9:54

How can i get month in php?

What does your "data variable" look like? If it's like this:

$mydate = "2010-05-12 13:57:01";

You can simply do:

$month = date("m",strtotime($mydate));

For more information, take a look at date and strtotime.

EDIT:

To compare with an int, just do a date_format($date,"n"); which will give you the month without leading zero.

Alternatively, try one of these:

if((int)$month == 1)...
if(abs($month) == 1)...

Or something weird using ltrim, round, floor... but date_format() with "n" would be the best.

How can i get month in php?

Kwido

1,3728 silver badges21 bronze badges

answered Sep 22, 2010 at 9:56

oezioezi

50k10 gold badges97 silver badges115 bronze badges

1

$unixtime = strtotime($test);
echo date('m', $unixtime); //month
echo date('d', $unixtime); 
echo date('y', $unixtime );

answered Sep 22, 2010 at 9:56

Pramendra GuptaPramendra Gupta

14.4k4 gold badges32 silver badges34 bronze badges

as date_format uses the same format as date ( http://www.php.net/manual/en/function.date.php ) the "Numeric representation of a month, without leading zeros" is a lowercase n .. so

echo date('n'); // "9"

answered Sep 22, 2010 at 10:45

HannesHannes

7,9474 gold badges32 silver badges51 bronze badges

As it's not specified if you mean the system's current date or the date held in a variable, I'll answer for latter with an example.


answered Apr 7, 2018 at 4:59

How can i get month in php?

J-a-n-u-sJ-a-n-u-s

1,35916 silver badges20 bronze badges

1

To compare with an int do this:


answered Feb 29, 2020 at 16:20

e102e102

657 bronze badges

How can I get current month in PHP?

php $transdate = date('m-d-Y', time()); echo $transdate; $month = date('m', strtotime($transdate)); if ($month == "12") { echo "
December is the month :)"; } else { echo "
The month is probably not December"; } ?>

How can I get current month number?

Use the new Date() constructor to get a date object. Call the getMonth() method on the object and add 1 to the result. The getMonth method returns a zero-based month index so adding 1 returns the current month.

How do I get the month start and end in PHP?

php echo 'First Date = ' . date('Y-m-01') . '
'; echo 'Last Date = ' .
date('Y-m-t') .

How can I get 30 Day date in PHP?

php $next_due_date = date('05/06/2016', strtotime("+30 days")); echo $next_due_date; ?> But it is returning to "05/06/2016" only!