Hi,
I have a timestamp, is there a function to add x number of weeks to this timestamp ?
Thanks
| SitePoint Sponsor |


Hi,
I have a timestamp, is there a function to add x number of weeks to this timestamp ?
Thanks


PHP Code:$newtimestamp = strtotime("+6 weeks", $oldtimestamp);
17-29% of paid ad clicks are fraudulent. Get protected with Improvely, your online marketing dashboard.
→ Conversion tracking, click fraud detection, A/B testing and more.


Cool Dan, thanks.


You could also do the math
PHP Code:$x = 6; //# of weeks
$newtimestamp = $oldtimestamp + ($x * 7 * 24 * 60 * 60);
17-29% of paid ad clicks are fraudulent. Get protected with Improvely, your online marketing dashboard.
→ Conversion tracking, click fraud detection, A/B testing and more.
Bookmarks