ItSolutionStuff.com

How to Change Date Format in PHP?

By Hardik Savani • May 14, 2024
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

Hardik Savani

I'm a full-stack developer, entrepreneur, and founder of ItSolutionStuff.com. Passionate about PHP, Laravel, JavaScript, and helping developers grow.

📺 Subscribe on YouTube

We Are Recommending You

How to Change Date Format in Codeigniter?

Read Now →

PHP MySQL DataTables Server-side Processing Example

Read Now →

How to Change Date Format in JQuery?

Read Now →

PHP Ajax Infinite Scroll Pagination Example

Read Now →

PHP Bootstrap Autocomplete Tokenfield using Ajax Example

Read Now →

PHP Import Excel File into MySQL Database Tutorial

Read Now →

Laravel Where Clause with date_format() Example

Read Now →

JQuery Datepicker Example using JQuery UI JS

Read Now →

How to Quick Run PHP Project on Localhost?

Read Now →

How to Increase Upload File Size Limit PHP in Ubuntu?

Read Now →

How to Check If String is URL or Not in PHP?

Read Now →

How to Find Day Name from Specific Date in PHP?

Read Now →

How to use Datepicker in Bootstrap?

Read Now →