Contact: aviboots(AT)netvision.net.il
40,764 questions
53,140 answers
573 users
$s = "2022/03/28"; $date = strtotime($s); $date = strtotime("+7 day", $date); echo date('Y/m/d', $date); /* run: 2022/04/04 */
$s = "Mar 28, 2022";; $date = strtotime($s); $date = strtotime("+7 day", $date); echo date('Y/m/d', $date); /* run: 2022/04/04 */