Answers for "set date old than one day php"

PHP
0

php check if date is older than 1 month

if(strtotime('2011-08-19 17:14:40') < strtotime('-30 days')) {
     // this is true
 }
Posted by: Guest on August-10-2021
0

php date modify plus 1 day

<?php
$date = new DateTime('2006-12-12');
$date->modify('+1 day');
echo $date->format('Y-m-d');
?>
Posted by: Guest on December-17-2021

Browse Popular Code Answers by Language