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

PHP
0

Add 5 days to the current date in PHP

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

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

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

Browse Popular Code Answers by Language