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

PHP Code Editor:

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

Previous: 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.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://w3resource.com/php-exercises/php-class-exercise-7.php