Answers for "php date minus 1 week"

PHP
0

php date format minus 1 day

date('Y-m-d',(strtotime ( '-1 day' , strtotime ( $date) ) ));
Posted by: Guest on September-05-2021
3

minus 1 year php

$year = new DateTime(date('Y-m-d')); // gets current date
$interval = new DateInterval('P1Y');
$year->sub($interval); // subtract 1 year with $interval

// var_dump($year->format('Y')); or var_dump($year->format('Y-m-d'));
Posted by: Guest on October-22-2021
0

in date function + 1 month and - 1 day in php

<?php
$months = n; // Here n = …..-2,-1,0,1,2, …..(months to add or subtract)
$years = n;  // Here n = …..-2,-1,0,1,2, …..(years to add or subtract)
echo date('Y-m-28', mktime(0, 0, 0, date('m')+$months, 1, date('Y') + $years));
?>
Posted by: Guest on October-13-2020

Browse Popular Code Answers by Language