php-doc-en/reference/datetime/book.xml
Derick Rethans 99ea22f629 - Correcting some texts.
#- And testing the online doc editor.

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@296162 c90b9560-bf6c-de11-be94-00142212c4b1
2010-03-14 05:18:33 +00:00

76 lines
2.1 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
<!-- Purpose: calendar -->
<!-- Membership: core -->
<book xml:id="book.datetime" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>Date and Time</title>
<titleabbrev>Date/Time</titleabbrev>
<!-- {{{ preface -->
<preface xml:id="intro.datetime">
&reftitle.intro;
<para>
These functions allow you to get the date and time from the server
where your PHP scripts are running. You can use these functions to format the
date and time in many different ways.
</para>
<para>
The date and time information is internally stored as an 64-bit number so
all imaginable dates (including negative years) are supported. The range is from about 292
billion years in the past to the same in the future.
</para>
<note>
<simpara>
Please keep in mind that these functions are dependent on
the locale settings of your server. Make sure to take
daylight saving time (use e.g.
<literal>$date = strtotime('+7 days', $date)</literal> and not
<literal>$date += 7*24*60*60</literal>)
and leap years into consideration when working
with these functions.
</simpara>
</note>
<note>
<simpara>
The timezones referenced in this section can be found in the
<xref linkend="timezones"/>.
</simpara>
</note>
</preface>
<!-- }}} -->
&reference.datetime.setup;
&reference.datetime.constants;
&reference.datetime.timezones;
&reference.datetime.datetime;
&reference.datetime.datetimezone;
&reference.datetime.dateinterval;
&reference.datetime.dateperiod;
&reference.datetime.reference;
</book>
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
indent-tabs-mode:nil
sgml-parent-document:nil
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
vim600: syn=xml fen fdm=syntax fdl=2 si
vim: et tw=78 syn=sgml
vi: ts=1 sw=1
-->