Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

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-dTH:i:sO');
?>

You can use

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

instead, which is much easier to read.
Source by www.php.net #
 
PREVIOUS NEXT
Tagged: #date #php
ADD COMMENT
Topic
Name
6+5 =