ItSolutionStuff.com

How to Convert String to Date in PHP?

By Hardik Savani • May 14, 2024
PHP

When ever you need to convert string date to date formate like m/d/Y, Y-m-d, d-m-Y etc in php. we can easily convert string date specific date formate in php. we will use date() for converting string date to formate. we can also set timezone before convert string date to date in php example.

In this example i will give you very simple way to convert php string date to date formate. i gave you two example to understand how you will php string date format conversion. Also added output of that php example.

So, let's see both example. you can understand how it works.

Example:

<?php

$myStringDate = "1564079400";

date_default_timezone_set('Asia/Kolkata');

$newDateFormat = date('m/d/Y', $myStringDate);

print_r($newDateFormat);

?>

Output:

07/26/2019

Example 2:

<?php

$myStringDate = strtotime('26-07-2019');

$newDateFormat = date('m/d/Y',$myStringDate);

print_r($newDateFormat);

?>

Output:

07/26/2019

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

PHP Dropzone Display Existing Files from Server Example

Read Now →

How to Upload and Resize Image in PHP?

Read Now →

PHP MySQL Confirmation Before Delete Record using Ajax Example

Read Now →

PHP Bootstrap Autocomplete Tokenfield using Ajax Example

Read Now →

PHP MySQL Highcharts Chart Example

Read Now →

PHP Import Excel File into MySQL Database Tutorial

Read Now →

PHP CRUD Operation Using Ajax and JQuery Example

Read Now →

Convert HTML to PDF in PHP with Dompdf Example

Read Now →

How to Integrate Google Recaptcha with PHP Form?

Read Now →

PHP JQuery Select2 Ajax Autocomplete Example

Read Now →

How to Count Number of Files in Directory using PHP?

Read Now →

How to Find Day Name from Specific Date in PHP?

Read Now →

How to Get Difference Between Two Dates in Laravel?

Read Now →

How to Remove Null Values from Array in PHP?

Read Now →