How To Add Year To Current Date In Php?
Hi Guys,
In this example,I will learn you add year to current date in php.you can easy and simply add year to current date in php.
we will show add year in current date php.this tutorial will give you example of add month to current date using php.
Example:
<?php
$date = date('d/m/Y', strtotime('+1 years'));
echo $date;
?>
Output:
19/12/2021
It will help you...
- How To Use Php Conditional Statement Example
- How to Check if String Contains Regex in PHP?
- PHP Array_column() Function Example
- PHP Generate List of Random Numbers Between 0 and 100 Example
- How to User Login with Facebook in PHP?
- How to Explode Every Character into Array Using PHP Example?
- PHP Form Validation Tutorial
- PHP Convert XML to JSON Example