Skip to content
Related Articles
Get the best out of our app
GFG App
Open App
geeksforgeeks
Browser
Continue

Related Articles

How to convert DateTime to String using PHP ?

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

The task is to convert DateTime to String using PHP. There are two ways to convert it.  

1. By using Format method 

  • In the Format method, we can convert the DateTime object to a string.
  • The DateTime to string program is programmed below:

Example:

PHP




<?php
  
// Store datetime in variable today
$today = date("d/m/Y H:i:s");    
  
if ($today) { 
    echo $today
  
// If unknown time 
} else {  
    echo "can't display time"
}
?>


Output:

07/05/2021 17:57:38

2. By using list() method:

  • The list() method is used to convert the DateTime object to string.
  • The shorter way of list method is programmed below:

PHP




<?PHP
  
// Using list method to display the datetime
list($day, $month, $year, $hour, $min, $sec
        = explode("/", date('d/m/Y/h/i/s')); 
  
// Display the datetime
echo $month . '/' . $day . '/' . $year . ' '
    . $hour . ':' . $min . ':' . $sec;
  
?>


Output:

05/07/2021 05:58:48

My Personal Notes arrow_drop_up
Last Updated : 14 Jun, 2021
Like Article
Save Article
Similar Reads
Related Tutorials