Jump to content

Recommended Posts

I have some dates but when I try to add an extra day to a date it does not process correcly.  The code I have is

<?php
$startDate = "01-06-2009";
echo $startDate;
echo "<br/>";
$finishDate = "30-06-2009";
echo $finishDate;
echo "<br/>";
$startDate = date("d-m-Y", strtotime("$startDate +$i Day"));
echo $startDate;
echo "<br/>";
$finishDate = date("d-m-Y", strtotime("$finishDate +$i Day"));
echo $finishDate;
echo "<br/>";
?>

 

However this results in the following responce?

 

01-06-2009

30-06-2009

01-12-2006

01-12-2035

 

Many thanks in advance for any help...

Link to comment
https://forums.phpfreaks.com/topic/162276-solved-dates/
Share on other sites

So if you hard code that value in, you still get incorrect dates?  Try this and tell me what you get.

 

$i=1;
$startDate = "01-06-2009";
echo $startDate;
echo "
";
$finishDate = "30-06-2009";
echo $finishDate;
echo "
";
$startDate = date("d-m-Y", strtotime("$startDate +$i Day"));
echo $startDate;
echo "
";
$finishDate = date("d-m-Y", strtotime("$finishDate +$i Day"));
echo $finishDate;
echo "
";
?>

 

My output:

 

01-06-2009

30-06-2009

02-06-2009

01-07-2009

Link to comment
https://forums.phpfreaks.com/topic/162276-solved-dates/#findComment-856524
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.