datetime - PHP add weekdays not working properly for Friday -
i trying add weekdays date using below formula:
$date = strtotime($effdate." +5 weekdays"); $date = date('m/d/y', $date);
it works fine other days not friday. points next sunday rather friday. googled many solutions, didn't clear idea.
is there workaround fix bug?
if you're running php < 5.5.0 known bug , fixed in php 5.5
the bug report provide alternative function work versions of php susceptible bug, though it's using datetime objects rather unix timestamps
Comments
Post a Comment