How to Get Month Name from Date in PHP?
This example is focused on how to get month name from date in php. if you have question about how to get full month name from date in php then i will give simple example with solution. We will look at example of get month short name from date in php. In this article, we will implement a php get month name from number.
I will give you very simple example how to get month name from date in PHP. so let's see several examples with output:
Example 1: PHP Get Full Month Name from Date
index.php
<?php
$date = "2021-02-02";
$newDate = date('F', strtotime($date));
echo $newDate;
?>
Output:
February
Example 2: PHP Get Full Month Name from Current Date
index.php
<?php
$newDate = date('F');
echo $newDate;
?>
Output:
November
Example 3: PHP Get Short Month Name from Date
index.php
<?php
$date = "2021-02-02";
$newDate = date('M', strtotime($date));
echo $newDate;
?>
Output:
Feb
Example 4: PHP Get Short Month Name from Current Date
index.php
<?php
$newDate = date('M');
echo $newDate;
?>
Output:
Nov
Example 5: PHP Get Month Name from Number
index.php
<?php
$monthNumber = 4;
$monthName = date('F', mktime(0, 0, 0, $monthNumber, 10));
echo $monthName;
?>
Output:
April
i hope it can help you...
Hardik Savani
I'm a full-stack developer, entrepreneur and owner of ItSolutionstuff.com. I live in India and I love to write tutorials and tips that can help to other artisan. I am a big fan of PHP, Laravel, Angular, Vue, Node, Javascript, JQuery, Codeigniter and Bootstrap from the early stage. I believe in Hardworking and Consistency.
We are Recommending you
- How to Get Previous Month from Date in PHP?
- How to Get Next Month Date in PHP?
- How to Get Tomorrow Date in PHP?
- How to Get Yesterday Date in PHP?
- PHP Subtract Seconds from Time Example
- How to Subtract Minutes from DateTime in PHP?
- How to Subtract Hours from DateTime in PHP?
- How to Add Seconds to Time in PHP?
- PHP Add Minutes to Time Example
- PHP Add Hours to Datetime Example
- PHP Subtract Year from Date Example
- PHP Subtract Month from Date Example