]> granicus.if.org Git - php/commitdiff
- [DOC] win's strftime does not support all posix formatting code and have some win...
authorPierre Joye <pajoye@php.net>
Sun, 10 Aug 2008 11:27:26 +0000 (11:27 +0000)
committerPierre Joye <pajoye@php.net>
Sun, 10 Aug 2008 11:27:26 +0000 (11:27 +0000)
ext/date/tests/009.phpt
ext/date/tests/009_win32.phpt [new file with mode: 0644]

index eb5b459154caedacd0f368539990cb05dab13faf..20d7bb64110cdaa6b1d41cd03dda831fcf7c6bad 100644 (file)
@@ -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 (file)
index 0000000..3c22604
--- /dev/null
@@ -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