Contact: aviboots(AT)netvision.net.il
39,943 questions
51,883 answers
573 users
$date = new DateTime('2025-01-07'); $monthName = $date->format('F'); // 'F' gives the full month name echo $monthName; /* run: January */
$dateString = '2025-01-07'; $timestamp = strtotime($dateString); $monthName = date('F', $timestamp); // 'F' gives the full month name echo $monthName; /* run: January */
$date = DateTime::createFromFormat('Y-m-d', '2025-01-07'); $monthName = $date->format('F'); // 'F' gives the full month name echo $monthName; /* run: January */