Was googling this, but couldn't find the answer. Was wondering, if there is a difference in these two scripts?
+3 day:
echo date( 'd.m.Y H:i:s', strtotime( '+3 day' ) );
+3 days:
echo date( 'd.m.Y H:i:s', strtotime( '+3 days' ) );
The output is exactly the same.
So is that implemented to make sure people get less errors or what?
And witch one should be preferred to use?