Hello Focused on How to get month name from date in php. In next examples we will implement other date formats like a specific character format, a hex, a number format, etc.
Before we get into the code, it should be noted that, in PHP, a date and time is represented in 24 bit wide. So, a DateTime will be represented in a DD/MM/YYYY format, and a Time will be represented in a YYMM format. For those who are not familiar with the formats of date and time, here are two resources that help you understand them:
You will notice in this example that we have first created a DateTime How to get month name from date in php object and assigned it to the month variable, and then we created at get the your result:
How to get month name from date in php Using the Eloquent ORM
The Eloquent ORM is our object agnostic ORM which can be used in all PHP frameworks. There are some great tutorials on how to use the Eloquent ORM to achieve common tasks. Here is one of them.
solution our How to Get Month Name from Date in PHP
Table of Contents
Solution 1: Get Full Month Name from Date
index.php
<?php
$Date = "2022-02-19";
$ResultDate = date('F', strtotime($Date));
echo $ResultDate;
?>
Output: Get Full Month Name from Date
February
Solution 2: Get Full Month Name from Current Date
index.php
<?php
$ResultDate = date('F');
echo $ResultDate;
?>
Output: Get Full Month Name from Current Date
February
Solution 3: Get Short Month Name from Date
index.php
<?php
$date = "2022-02-19";
$ResultDate = date('M', strtotime($date));
echo $ResultDate;
?>
Output: Get Short Month Name from Date
Feb
Solution 4: Get Short Month Name from Current Date
index.php
<?php
$ResultDate = date('M');
echo $ResultDate;
?>
Output : Get Short Month Name from Current Date
Feb
Solution 5: Get Month Name from Number
index.php
<?php
$MonthNo = 5;
$MonthName = date('F', mktime(0, 0, 0, $MonthNo, 10));
echo $MonthName;
?>
Output: Get Month Name from Number
Jun
i hope it can help you…