w3resource

PHP Class Exercises : Convert a string to Date and DateTime

PHP class: Exercise-7 with Solution

Write a PHP script to a convert string to Date and DateTime.

Sample Date : '12-08-2004'
Note : PHP considers '/' to mean m/d/Y format and '-' to mean d-m-Y format.

Sample Solution:

PHP Code:

<?php
// Create a DateTime object from the given date string '12-08-2004' using the format 'm-d-Y'
$dt = DateTime::createFromFormat('m-d-Y', '12-08-2004')->format('Y-m-d');

// Output the formatted date in 'Y-m-d' format
echo $dt;
?>

Output:

2004-12-08

Explanation:

In the exercise above,

  • DateTime::createFromFormat('m-d-Y', '12-08-2004'): Creates a DateTime object from the given date string '12-08-2004' using the specified format 'm-d-Y', which represents month-day-year.
  • ->format('Y-m-d'): Formats the DateTime object to 'Y-m-d' format, which represents year-month-day.
  • echo $dt;: Outputs the formatted date.

Flowchart :

Flowchart: Convert a string to Date and DateTime

Go to:


PREV : Write a PHP calculator class which will accept two values as arguments, then add them, subtract them, multiply them together, or divide them on request.
NEXT : PHP JSON Exercises Home.

PHP Code Editor:



Have another way to solve this solution? Contribute your code (and comments) through Disqus.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.