Answers for "Add 7 days to the current date in PHP"

PHP
0

Add 7 days to the current date in PHP

<?php
  $result = date('d.m.Y', strtotime('+7 day', time()));

  echo $result;
?>
Posted by: Guest on April-27-2022

Code answers related to "Add 7 days to the current date in PHP"

Browse Popular Code Answers by Language