PHP

How to show the current date and time in PHP?

Php has a pre-defined function for date and time that is “date”,

<?php
    $currentDateTime = date('Y-m-d H:i:s');
    echo "Your current Date and time is:" . $currentDateTime;
?>

the output is: Your current Date and time is:2020-01-26 12:11:05

Related Articles

Leave a Reply

Your email address will not be published. Required fields are marked *

Back to top button