betz Thu Aug 19 08:06:07 2004 EDT
Modified files:
/phpdoc/en/reference/datetime/functions mktime.xml
Log:
clarification of DST enabling
http://cvs.php.net/diff.php/phpdoc/en/reference/datetime/functions/mktime.xml?r1=1.13&r2=1.14&ty=u
Index: phpdoc/en/reference/datetime/functions/mktime.xml
diff -u phpdoc/en/reference/datetime/functions/mktime.xml:1.13
phpdoc/en/reference/datetime/functions/mktime.xml:1.14
--- phpdoc/en/reference/datetime/functions/mktime.xml:1.13 Thu Aug 19 07:05:41
2004
+++ phpdoc/en/reference/datetime/functions/mktime.xml Thu Aug 19 08:06:07 2004
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.13 $ -->
+<!-- $Revision: 1.14 $ -->
<!-- splitted from ./en/functions/datetime.xml, last change in rev 1.2 -->
<refentry id="function.mktime">
<refnamediv>
@@ -44,10 +44,11 @@
cause unexpected (but not incorrect) results.
</para>
<para>
- Some times are invalid if <parameter>is_dst</parameter> is set to 1. If
- DST is enabled in e.g. 2:00, all times between 2:00 and 3:00 are invalid
- and <function>mktime</function> returns an undefined (usually negative)
- value. Some systems (e.g. Solaris 8) enable DST at midnight so time 0:30
+ Some times are invalid if DST is enabled on the system PHP is running on
+ or <parameter>is_dst</parameter> is set to 1. If DST is enabled in e.g.
+ 2:00, all times between 2:00 and 3:00 are invalid and
+ <function>mktime</function> returns an undefined (usually negative) value.
+ Some systems (e.g. Solaris 8) enable DST at midnight so time 0:30
of the day when DST is enabled is evaluated as 23:30 of the previous day.
</para>
<note>