Tagged Questions
3
votes
13answers
3k views
performing datetime related operations in PHP
how do you actually perform datetime operations such as adding date, finding difference, find out how many days excluding weekends in an interval? i personally started to pass some of these operations ...
2
votes
1answer
197 views
php: datetime arithmetic
I'm a bit stuck with the DateInterval class of PHP. What I really want is the number of seconds elapsed between two DateTime stamps.
$t1 = new DateTime( "20100101T1200" );
$t2 = new DateTime( ...