I've looked around and cant find a very elegant solution for this. If I have a timestamp, is there an elegant way to add a X number of business days to it? I've found solutions that calculate business days between two dates and some implementations in C++ and C# but nothing exactly like this for PHP.
I've been told strtotime is able to handle it with limited efficacy but I do need it to be accurate so I'd like to avoid that.
Thanks!