Good Morning All...
This may be a simple question but hopefully someone can give me a specific answer...
I know I can set a date based on the current date + or - a specified number of days
$created = date("Y-m-d H:i:s", time()) ;
$dist_date = date("Y-m-d", strtotime($created.'+4 days')) ;// distribute in 4 days
But what I really need to do is to specify a date as say the 20th of the current month
(used to calculate future payouts that are earned, but will not be paid out until the 20th)
Is there a way to specify the strtotime so it would indicate the 20th, regardless of which day of the month it is calculated?