How to Get Yesterday Date using PHP?
In this tutorial, we will learn How to Get Yesterday Date using PHP?. I will give you the PHP date function to get the previous date. You learned how to get previous in PHP using the date function. if you have a question about PHP to get the previous date, then you are right place. you will learn how to get the previous day’s date using PHP. Let’s see below example PHP get the previous date.
Also read: How to Get Next Month Date using PHP?
I will give you an example of how to get Yesterday date using PHP. so don’t waste time to see the below examples:
Consent
- Get Yesterday date from Current Date
- Get Yesterday date from Given Date
Also read: How to Get Tomorrow Date using PHP?
Get Yesterday date from Current Date
<?php $new_date = date('Y-m-d', strtotime('-1 days')); echo $new_date; ?>
Output: 2021-11-27
Also read: How to Get Month Name from Date using PHP?
Get Yesterday date from Given Date
<?php $new_date = date('Y-m-d', strtotime('yesterday')); echo $new_date; ?>
Output: 2021-11-27