summaryrefslogtreecommitdiff
path: root/ext/date/tests/009.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/date/tests/009.phpt')
-rw-r--r--ext/date/tests/009.phpt50
1 files changed, 50 insertions, 0 deletions
diff --git a/ext/date/tests/009.phpt b/ext/date/tests/009.phpt
new file mode 100644
index 0000000..3697ed6
--- /dev/null
+++ b/ext/date/tests/009.phpt
@@ -0,0 +1,50 @@
+--TEST--
+strftime() and gmstrftime() tests
+--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
+date_default_timezone_set('Asia/Jerusalem');
+
+$t = mktime(0,0,0, 6, 27, 2006);
+
+var_dump(strftime());
+
+var_dump(strftime(""));
+var_dump(strftime("%a %A %b %B %c %C %d %D %e %g %G %h %H %I %j %m %M %n %p %r %R %S %t %T %u %U %V %W %w %x %X %y %Y %Z %z %%", $t));
+var_dump(strftime("%%q %%a", $t));
+var_dump(strftime("%q", $t));
+var_dump(strftime("blah", $t));
+
+var_dump(gmstrftime());
+
+var_dump(gmstrftime(""));
+var_dump(gmstrftime("%a %A %b %B %c %C %d %D %e %g %G %h %H %I %j %m %M %n %p %r %R %S %t %T %u %U %V %W %w %x %X %y %Y %Z %z %%", $t));
+var_dump(gmstrftime("%%q %%a", $t));
+var_dump(gmstrftime("%q", $t));
+var_dump(gmstrftime("blah", $t));
+
+echo "Done\n";
+?>
+--EXPECTF--
+Warning: strftime() expects at least 1 parameter, 0 given in %s on line %d
+bool(false)
+bool(false)
+%unicode|string%(%d) "Tue Tuesday Jun June Tue Jun 27 00:00:00 2006 %s
+%s %"
+%unicode|string%(5) "%q %a"
+%unicode|string%(%d) "%s"
+%unicode|string%(4) "blah"
+
+Warning: gmstrftime() expects at least 1 parameter, 0 given in %s on line %d
+bool(false)
+bool(false)
+%unicode|string%(%d) "Mon Monday Jun June Mon Jun 26 21:00:00 2006 %s
+%s %"
+%unicode|string%(5) "%q %a"
+%unicode|string%(%d) "%s"
+%unicode|string%(4) "blah"
+Done