Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
Selected Reading
How to add days to $Date in PHP?
To add days to $Date in PHP, the code is as follows−
Example
"; echo "Date = $date"; echo "\nDisplaying updated date...
"; echo date('Y-m-d', strtotime($date. ' + 20 days')); ?>
Output
This will produce the following output−
Displaying date... Date = 2019-11-11 Displaying updated date... 2019-12-01
Example
Let us now see another example −
".date_format($date, "Y/m/d"); ?>
Output
This will produce the following output−
Displaying Date...2019/11/11 Displaying Updated Date... 2019/12/06
Advertisements
