1
0
mirror of https://github.com/php/web-php.git synced 2026-03-24 15:22:19 +01:00
Files
archived-web-php/apachecon/s_datetime.php3
Rasmus Lerdorf 2424277ad8 Add main slides
1998-10-21 23:44:28 +00:00

19 lines
636 B
PHP
Executable File

<?php require "header.inc"?>
<H1>Date and Time Handling</H1>
<?example('<? echo date("M d, Y H:i:s", time());?>');?>
<H6>Output:</H6><BLOCKQUOTE><? echo date("M d, Y H:i:s", time());?></BLOCKQUOTE>
<?/*example('<? echo date("M d, Y H:i:s", gmtime());?>');*/?>
<?#echo date("M d, Y H:i:s", gmtime());?>
<?example('<? echo date("M d, Y H:i:s", time()+7*24*60*60);?>');?>
<H6>Output:</H6><BLOCKQUOTE><? echo date("M d, Y H:i:s", time()+7*24*60*60);?></BLOCKQUOTE>
<H2>Calendar Conversions</H2>
<UL>
<LI>Converts between calendars (Julian, Gregorian, Mayan, etc)
<LI>Supplied as an example extension.
</UL>
<?php require "footer.inc"?>