|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2001-01-15 11:55 UTC] ageorgou at filmnet dot gr
<?
echo "date function gives wrong day for dates between 28 and 31 of October on any year\n";
$daySeconds = 86400;
$time = 1004216400;
echo "Day in 28 of October is " . date("j", $time) . "<BR>\n";
$time += $daySeconds;
echo "Day in 29 of October is " . date("j", $time) . "<BR>\n";
$time += $daySeconds;
echo "Day in 30 of October is " . date("j", $time) . "<BR>\n";
$time += $daySeconds;
echo "Day in 31 of October is " . date("j", $time) . "<BR>\n";
?>
Configure Line is
./configure' '--prefix=/usr' '--with-config-file-path=/etc' '--disable-debug' '--enable-pic' '--enable-shared' '--enable-inline-optimization' '--with-apxs=/usr/sbin/apxs' '--with-exec-dir=/usr/bin' '--with-regex=system' '--with-gettext' '--with-gd=shared' '--with-jpeg-dir=/usr' '--with-png' '--with-zlib' '--with-db2' '--with-db3' '--with-gdbm' '--enable-debugger' '--enable-magic-quotes' '--enable-safe-mode' '--enable-sysvsem' '--enable-sysvshm' '--enable-track-vars' '--enable-yp' '--enable-ftp' '--without-mysql' '--without-oracle' '--without-oci8' '--with-openssl' '--with-xml'
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Oct 27 10:00:01 2025 UTC |
date function doesn't give the same dates as it would expecte if we add the day seconds (86400) in a UNIX timestamp. I realised that these is because I didn't take any consideration of daylight time savings. <? $daySeconds = 86400; $time = 1004216400; echo "Day in 28 of October is " . date("j", $time) . "<BR>\n"; $time += $daySeconds; echo "Day in 29 of October is " . date("j", $time) . "<BR>\n"; $time += $daySeconds; echo "Day in 30 of October is " . date("j", $time) . "<BR>\n"; $time += $daySeconds; echo "Day in 31 of October is " . date("j", $time) . "<BR>\n"; ?>