How to get Full Month Name from Date in PHP?

In this article, we will implement a php get month name from date.

1. Code:

<?php
    function getFullMonthNameFromDate($date){
       $monthName = date('F', strtotime($date));
        return $monthName;
    }
	
    $date = "2021-02-02";
    echo getFullMonthNameFromDate($date);
?>

2. Example:

Input:

date: 2021-02-02

Output:

output: February