Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT cygwin DOT com Mail-Followup-To: cygwin AT cygwin DOT com Delivered-To: mailing list cygwin AT cygwin DOT com Date: Sun, 9 Nov 2003 14:45:48 +0000 (GMT) From: John Sullivan Reply-To: John Sullivan To: cygwin AT cygwin DOT com Subject: mod_php & strftime Message-ID: Organization: Huh? MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII The pure native version of mod_php from php.net (for use with the native Win32 Apache) supports the (fairly common) %#* extensions in strftime, for example: strftime("%d %B", $d) returns "09 November" strftime("%#d %B", $d) returns "9 November" The cygwin version doesn't: strftime("%#d %B", $d) returns "d November" To get the same effect one needs to do something like: $dtm = getdate($d); strftime("%A " . $dtm['mday'] . " %B %Y", $d) Which is really grotty. John -- Dead stars still burn -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/