Answers for "php month full name"

PHP
2

get day of month php

// get day of month php
// Method 1; some server not work, I had check php 7.3.24 not worked, php 7.3.8 worked
cal_days_in_month(CAL_GREGORIAN, $month, $year)
echo (cal_days_in_month(CAL_GREGORIAN, 2, 2020)); // => 29

// Method 2;
function days_in_month($month, $year) {
    // calculate number of days in a month
    return $month == 2 ? ($year % 4 ? 28 : ($year % 100 ? 29 : ($year % 400 ? 28 : 29))) : (($month - 1) % 7 % 2 ? 30 : 31);
}

// Method 3;
echo (date('t', strtotime('2020-02-1')));	// 29
Posted by: Guest on November-17-2020
0

full month name php

echo date("F", strtotime('2016-05-17 16:41:51'));
Posted by: Guest on August-30-2021
0

long day in php

$mydate = '2016-01-01';
echo date('l, F jS, Y', strtotime($mydate));
# Friday, January 1st, 2016
Posted by: Guest on November-16-2020

Code answers related to "php month full name"

Browse Popular Code Answers by Language