Answers for "function of date in php"

PHP
2

date in php

FYI: there's a list of constants with predefined formats on the DateTime object, for example instead of outputting ISO 8601 dates with:

<?php
echo date('c');
?>

or

<?php
echo date('Y-m-d\TH:i:sO');
?>

You can use

<?php
echo date(DateTime::ISO8601);
?>

instead, which is much easier to read.
Posted by: Guest on October-19-2020
0

show date php

check here link:   http://www.eltcalendar.com/stuff/datemysqlphp.html
Posted by: Guest on August-29-2020

Browse Popular Code Answers by Language