Answers for "php year is how many days"

PHP
1

php get total amount of days in month

$DaysInCurrentMonth = date('t');
Posted by: Guest on August-05-2020
0

php date + 30 days

echo date('d/m/Y',strtotime('+30 days',strtotime(str_replace('/', '-', '05/06/2016')))) . PHP_EOL;
Posted by: Guest on July-30-2020

Browse Popular Code Answers by Language