PHP Subtract Year from Date Example
In this article we will cover on how to implement how to subtract year to date in php. This article goes in detailed on how to sub year to current date in php. step by step explain how to sub 5 years to date in php. you can understand a concept of how to sub 10 years to date in php.
I will give you very simple example how to subtract years to date in PHP. so let's see both example with output:
Example 1: PHP Subtract Year to Date
index.php
<?php
$date = "2021-11-01";
$newDate = date('Y-m-d', strtotime($date. ' - 3 years'));
echo $newDate;
?>
Output:
2018-11-01
Example 2: PHP Subtract Year to Current Date
index.php
<?php
$newDate = date('Y-m-d', strtotime(' - 3 years'));
echo $newDate;
?>
Output:
2018-11-10
i hope it can help you...
Hardik Savani
I'm a full-stack developer, entrepreneur and owner of ItSolutionstuff.com. I live in India and I love to write tutorials and tips that can help to other artisan. I am a big fan of PHP, Laravel, Angular, Vue, Node, Javascript, JQuery, Codeigniter and Bootstrap from the early stage. I believe in Hardworking and Consistency.