Contact: aviboots(AT)netvision.net.il
41,231 questions
53,733 answers
573 users
$s = "2022/03/29"; $date = strtotime($s); $date = strtotime("+5 day", $date); echo date('Y/m/d', $date); /* run: 2022/04/03 */
$s = "Mar 29, 2022";; $date = strtotime($s); $date = strtotime("+5 day", $date); echo date('Y/m/d', $date); /* run: 2022/04/03 */