Answers for "6 days from now in php"

PHP
0

add 7 days to date php

$date = "Mar 03, 2011";
$date = strtotime($date);
$date = strtotime("+7 day", $date);
echo date('M d, Y', $date);
Posted by: Guest on April-20-2020
0

php 30days

the time() +2592000
Posted by: Guest on April-16-2021

Browse Popular Code Answers by Language