How to Change Date Format in PHP?
In this post, i would like to share with you how do i change date format DD/MM/YYYY to YYYY-MM-DD, MM-DD-YYYY to YYYY-MM-DD, d/m/Y to Y-m-d in php. we will convert date format using date() and strtotime() of php.
I will give you very simple example that helps you to simply change date formate in php. we most of need to change date format when you store date into database and when you display on list page. so i will give you bellow three example that will help you to easily convert date format in php.
So, let's see three example, so you can use in your core php application.
Convert yyyy-mm-dd to mm/dd/yyyy in PHP
In this example we will add "2019-08-15" with (YYYY-MM-DD) format and we will change into MM/DD/YYYY format in php.
$myOriginalDate = "2019-08-15";
$myNewDate = date("m/d/Y", strtotime($myOriginalDate));
print_r($myNewDate);
Output:
08/15/2019
Convert yyyy-mm-dd to dd-mm-yyyy in PHP
In this example we will add "2019-08-15" with (YYYY-MM-DD) format and we will change into DD-MM-YYYY format in php.
$myOriginalDate = "2019-08-15";
$myNewDate = date("d-m-Y", strtotime($myOriginalDate));
print_r($myNewDate);
Output:
15-08-2019
Convert dd/mm/yyyy to yyyy-mm-dd in PHP
In this example we will add "15/08/2019" with (DD/MM/YYYY) format and we will change into YYYY-MM-DD format in php.
$myOriginalDate = "15/08/2019";
$myOriginalDate = str_replace('/', '-', $myOriginalDate );
$myNewDate = date("Y-m-d", strtotime($myOriginalDate));
print_r($myNewDate);
Output:
2019-08-15
Now you can check anyone, it will help you.
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.
We are Recommending you
- How to Change Date Format in Codeigniter?
- PHP MySQL DataTables Server-side Processing Example
- How to Change Date Format in JQuery?
- PHP Ajax Infinite Scroll Pagination Example
- PHP Bootstrap Autocomplete Tokenfield using Ajax Example
- PHP Import Excel File into MySQL Database Tutorial
- Laravel Where Clause with date_format() Example
- JQuery Datepicker Example using JQuery UI JS
- How to Quick Run PHP Project on Localhost?
- How to Increase Upload File Size Limit PHP in Ubuntu?
- How to Check If String is URL or Not in PHP?
- How to Find Day Name from Specific Date in PHP?
- How to use Datepicker in Bootstrap?