|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2005-11-29 13:32 UTC] sniper@php.net
[2005-11-29 13:34 UTC] dave at ilovejackdaniels dot com
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Nov 19 13:00:01 2025 UTC |
Description: ------------ There is an error in the examples of date() usage: $today = date('\i\t \i\s \t\h\e jS \d\a\y.'); // It is the 10th day. and: $today = date('H:m:s \m \i\s\ \m\o\n\t\h'); // 17:03:17 m is month \t in date() will produce a tab rather than a "t". The "t"s above should be double-escaped, or the outputs should be changed to show tabs instead of "t"s.