|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2002-02-15 23:40 UTC] holliwell at gmx dot net
Hi,
Running Win2k AS, Apache 1.3.23, PHP-Modul.
Had some problems with strftime("%D");
<?php
print (strftime("%m/%d/%y"));//outputs 02/16/02
echo "<br>";
print print (strftime("%D")); //outputs nothing
?>
should both return the same result, the first displays nothing (empty string), the second one is working fine. The manual says for conversion specifiers:
%D - same as %m/%d/%y
Tried the same on a linux-box at my ISP (4.1.0, Apache 1.3.22, Kernel 2.2.19, Modulversion):
<?php
print (strftime("%m/%d/%y")); //outputs 02/16/02
echo "<br>";
print print (strftime("%D")); //02/16/021
?>
So my conclusion : strftime("%D") doesn?t work on win2k and seems to be broken on linux.
Thanks
Friedhelm Betz
P.S.:
On win2k standard Installation, no extra extensions enabled.
The configure at th elinux-box from ISP:
'./configure' '--with-config-file-path=/etc' '--enable-xslt' '--with-xslt-sablot' '--with-mysql=/usr/local/mysql' '--with-mcrypt=/usr/local' '--with-apache=../apache_current' '--with-ttf=/usr/local' '--with-t1lib=/usr/local' '--with-gd=/usr/' '--enable-gd-native-ttf' '-with-pdflib' '--with-jpeg-dir=/usr/local' '--with-png-dir=/usr/lib' '--with-tiff-dir=/usr/local/lib' '--with-imap=/usr/local' '--with-java=/usr/local/java2' '--with-zlib' '--with-dom' '--with-ming' '--with-swf=/usr/local' '--enable-bcmath' '--enable-ftp' '--enable-calendar' '--enable-memory-limit' '--enable-discard-path'
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Oct 27 15:00:01 2025 UTC |
print print (strftime("%D"));???????? One print will do the job! print strftime("%D");Hi, sorry for the typo :-(. print (strftime("%D"));has the expected result on Linux box. but still not on windows. Friedhelm Betz