diff options
author | Pierre Joye <pajoye@php.net> | 2008-08-10 11:27:26 +0000 |
---|---|---|
committer | Pierre Joye <pajoye@php.net> | 2008-08-10 11:27:26 +0000 |
commit | c76de7966df371487eb3657e38112720a963a469 (patch) | |
tree | f1c5cf30dcc45eab6a3abd9d4efb93178ad5c897 /ext/date | |
parent | b77dcab3b1423413ba7900110ddecce5606c2f2a (diff) | |
download | php-git-c76de7966df371487eb3657e38112720a963a469.tar.gz |
- [DOC] win's strftime does not support all posix formatting code and have some win specific rules see http://msdn.microsoft.com/en-us/library/fe06s4ak(VS.80).aspx for a complete list: split test for win32 and posix
Diffstat (limited to 'ext/date')
-rw-r--r-- | ext/date/tests/009.phpt | 23 | ||||
-rw-r--r-- | ext/date/tests/009_win32.phpt | 51 |
2 files changed, 65 insertions, 9 deletions
diff --git a/ext/date/tests/009.phpt b/ext/date/tests/009.phpt index eb5b459154..20d7bb6411 100644 --- a/ext/date/tests/009.phpt +++ b/ext/date/tests/009.phpt @@ -2,6 +2,11 @@ strftime() and gmstrftime() tests --INI-- date.timezone=Asia/Jerusalem +--SKIPIF-- +<?php +if (substr(PHP_OS, 0, 3) == 'WIN') die('skip posix only test.'); +if (!function_exists('strftime')) die("skip, strftime not available"); +?> --FILE-- <?php @@ -25,22 +30,22 @@ var_dump(gmstrftime("blah", $t)); echo "Done\n"; ?> ---EXPECTF-- +--EXPECTF-- Warning: strftime() expects at least 1 parameter, 0 given in %s on line %d bool(false) bool(false) -unicode(%d) "Tue Tuesday Jun June Tue Jun 27 00:00:00 2006 %s +string(%d) "Tue Tuesday Jun June Tue Jun 27 00:00:00 2006 %s %s %" -unicode(5) "%q %a" -unicode(%d) "%s" -unicode(4) "blah" +string(5) "%q %a" +string(%d) "%s" +string(4) "blah" Warning: gmstrftime() expects at least 1 parameter, 0 given in %s on line %d bool(false) bool(false) -unicode(%d) "Mon Monday Jun June Mon Jun 26 21:00:00 2006 %s +string(%d) "Mon Monday Jun June Mon Jun 26 21:00:00 2006 %s %s %" -unicode(5) "%q %a" -unicode(%d) "%s" -unicode(4) "blah" +string(5) "%q %a" +string(%d) "%s" +string(4) "blah" Done diff --git a/ext/date/tests/009_win32.phpt b/ext/date/tests/009_win32.phpt new file mode 100644 index 0000000000..3c22604b3c --- /dev/null +++ b/ext/date/tests/009_win32.phpt @@ -0,0 +1,51 @@ +--TEST-- +strftime() and gmstrftime() tests +--INI-- +date.timezone=Asia/Jerusalem +--SKIPIF-- +<?php +if (substr(PHP_OS, 0, 3) != 'WIN') die('skip only windows test.'); +if (!function_exists('strftime')) die("skip, strftime not available"); +?> +--FILE-- +<?php + +$t = mktime(0,0,0, 6, 27, 2006); + +var_dump(strftime()); + +var_dump(strftime("")); + +var_dump(strftime("%a %A %b %B %c %d %H %I %j %m %M %p %S %U %W %w %x %X %y %Y %Z %z %%", $t)); + +var_dump(strftime("%%q %%a", $t)); + +var_dump(strftime("blah", $t)); + +var_dump(gmstrftime()); + +var_dump(gmstrftime("")); + +var_dump(gmstrftime("%a %A %b %B %c %d %H %I %j %m %M %p %S %U %W %w %x %X %y %Y %Z %z %%", $t)); + +var_dump(gmstrftime("%%q %%a", $t)); + +var_dump(gmstrftime("blah", $t)); + +echo "Done\n"; +?> +--EXPECTF-- +Warning: strftime() expects at least 1 parameter, 0 given in C:\Users\pierre\Documents\php-sdk\vc9\x86\php_5_3\ext\date\tests\009_win32.php on line 5 +bool(false) +bool(false) +string(147) "Tue Tuesday Jun June 06/27/06 00:00:00 27 00 12 178 06 00 AM 00 26 26 2 06/27/06 00:00:00 06 2006 W. Europe Daylight Time W. Europe Daylight Time %" +string(5) "%q %a" +string(4) "blah" + +Warning: gmstrftime() expects at least 1 parameter, 0 given in C:\Users\pierre\Documents\php-sdk\vc9\x86\php_5_3\ext\date\tests\009_win32.php on line 15 +bool(false) +bool(false) +string(146) "Mon Monday Jun June 06/26/06 21:00:00 26 21 09 177 06 00 PM 00 26 26 1 06/26/06 21:00:00 06 2006 W. Europe Standard Time W. Europe Standard Time %" +string(5) "%q %a" +string(4) "blah" +Done |