In this tutorial you will learn how to PHP date create in a PHP web application .
PHP Date Create
In this tutorial you will learn how to PHP date create in a PHP web application . The date() function use for create date and it also support different date format. The code of "php-date-create.php" given below that create different date format :
<?php echo "PHP Date <br/>"; echo date("Y-m-d")."<br/>"; echo date("Y.m.d") ."<br/>"; echo date("Y/m/d")."<br/>"; echo date("Y/m/d H:i:s")."<br/>"; ?>
Output :
When run "php-date-create.php" display output as :
[ 0 ] Comments