Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

The following code returns the first saturday of next month and the first saturday of the month after. With the first saturday of next month the only issue is that it allows the user to select a day even if it is tomorrow.

Say just coming up is the 2nd of April which is a saturday. At the moment a customer can book this day. However If the first saturday of next month is less than 8 days again I want the first and of this month and next month to default one month along further.

<?php echo date('Y-m-d', strtotime('first saturday', strtotime('+1 month', strtotime(date("01-m-Y")))));?>

<?php echo date('Y-m-d', strtotime('first saturday', strtotime('+2 month', strtotime(date("01-m-Y")))));?>

Any ideas?

share|improve this question

1 Answer

Would this work for you?

// Use 691200 for eight days.
if ((strtotime('first saturday', strtotime('+1 month')) - mktime()) < 691200) {
    // Go two months.
    echo date('Y-m-d', strtotime('first saturday', strtotime('+2 month', strtotime(date("01-m-Y")))));
    echo date('Y-m-d', strtotime('first saturday', strtotime('+3 month', strtotime(date("01-m-Y")))));
} else {
    // Go one month.
    echo date('Y-m-d', strtotime('first saturday', strtotime('+1 month', strtotime(date("01-m-Y")))));
    echo date('Y-m-d', strtotime('first saturday', strtotime('+2 month', strtotime(date("01-m-Y")))));
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.