Display Future Dates Using strtotime()

<!DOCTYPE html> 
<html> 
<body> 
 
<?php 
$d = strtotime("tomorrow"); 
echo date("Y-m-d h:i:sa", $d) . "<br>"; 
 
$d = strtotime("next Saturday"); 
echo date("Y-m-d h:i:sa", $d) . "<br>"; 
 
$d = strtotime("+3 Months"); 
echo date("Y-m-d h:i:sa", $d) . "<br>"; 
?> 
 
</body> 
</html>

Output

2025-03-25 12:00:00am

2025-03-29 12:00:00am

2025-06-24 05:54:37am