Annotation of embedaddon/php/ext/date/tests/009_win32.phpt, revision 1.1.1.1

1.1       misho       1: --TEST--
                      2: strftime() and gmstrftime() tests
                      3: --SKIPIF--
                      4: <?php
                      5: if (substr(PHP_OS, 0, 3) != 'WIN') die('skip only windows test.');
                      6: if (!function_exists('strftime')) die("skip, strftime not available");
                      7: ?>
                      8: --FILE--
                      9: <?php
                     10: date_default_timezone_set('Asia/Jerusalem');
                     11: 
                     12: $t = mktime(0,0,0, 6, 27, 2006);
                     13: 
                     14: var_dump(strftime());
                     15: 
                     16: var_dump(strftime(""));
                     17: 
                     18: 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));
                     19: 
                     20: var_dump(strftime("%%q %%a", $t));
                     21: 
                     22: var_dump(strftime("blah", $t));
                     23: 
                     24: var_dump(gmstrftime());
                     25: 
                     26: var_dump(gmstrftime(""));
                     27: 
                     28: 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));
                     29: 
                     30: var_dump(gmstrftime("%%q %%a", $t));
                     31: 
                     32: var_dump(gmstrftime("blah", $t));
                     33: 
                     34: echo "Done\n";
                     35: ?>
                     36: --EXPECTF--    
                     37: Warning: strftime() expects at least 1 parameter, 0 given in %s on line %d
                     38: bool(false)
                     39: bool(false)
                     40: string(%d) "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 %s"
                     41: string(5) "%q %a"
                     42: string(4) "blah"
                     43: 
                     44: Warning: gmstrftime() expects at least 1 parameter, 0 given in %s on line %d
                     45: bool(false)
                     46: bool(false)
                     47: string(%d) "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 %s"
                     48: string(5) "%q %a"
                     49: string(4) "blah"
                     50: Done

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>