Answers for "previous five day in php from current date"

PHP
0

php script to calculate next 50 days from current date

$NewDate=Date('y:m:d', strtotime('+50 days'));
Posted by: Guest on September-04-2020
0

php get date from day of year

// This should get you a DateTime object from the date and year.
function getDateFromDay($dayOfYear, $year) {
  $date = DateTime::createFromFormat('z Y', strval($dayOfYear) . ' ' . strval($year));
  return $date;
}

// This should get you the day of the year and the year in a string.
date('z Y', strtotime('21 oct 2012'));
Posted by: Guest on November-10-2021

Code answers related to "previous five day in php from current date"

Browse Popular Code Answers by Language