summaryrefslogtreecommitdiff
path: root/ext/standard/tests/strings/sprintf_variation5.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/standard/tests/strings/sprintf_variation5.phpt')
-rw-r--r--ext/standard/tests/strings/sprintf_variation5.phpt70
1 files changed, 70 insertions, 0 deletions
diff --git a/ext/standard/tests/strings/sprintf_variation5.phpt b/ext/standard/tests/strings/sprintf_variation5.phpt
new file mode 100644
index 0000000000..b703d749fb
--- /dev/null
+++ b/ext/standard/tests/strings/sprintf_variation5.phpt
@@ -0,0 +1,70 @@
+--TEST--
+Test sprintf() function : usage variations - int formats with resource values
+--FILE--
+<?php
+/* Prototype : string sprintf(string $format [, mixed $arg1 [, mixed ...]])
+ * Description: Return a formatted string
+ * Source code: ext/standard/formatted_print.c
+*/
+
+echo "*** Testing sprintf() : integer formats with resource values ***\n";
+
+// resource type variable
+$fp = fopen (__FILE__, "r");
+$dfp = opendir ( dirname(__FILE__) );
+
+// array of resource types
+$resource_types = array (
+ $fp,
+ $dfp
+);
+
+// various integer formats
+$int_formats = array(
+ "%d", "%Ld", " %d",
+ "\t%d", "\n%d", "%4d",
+ "%[0-9]", "%*d"
+);
+
+$count = 1;
+foreach($resource_types as $res) {
+ echo "\n-- Iteration $count --\n";
+
+ foreach($int_formats as $format) {
+ var_dump( sprintf($format, $res) );
+ }
+ $count++;
+};
+
+// closing the resources
+fclose($fp);
+fclose($dfp);
+
+
+echo "Done";
+?>
+--EXPECTF--
+*** Testing sprintf() : integer formats with resource values ***
+
+-- Iteration 1 --
+string(%d) "%d"
+string(1) "d"
+string(%d) " %d"
+string(%d) " %d"
+string(%d) "
+%d"
+string(%d) " %d"
+string(4) "0-9]"
+string(1) "d"
+
+-- Iteration 2 --
+string(%d) "%d"
+string(1) "d"
+string(%d) " %d"
+string(%d) " %d"
+string(%d) "
+%d"
+string(%d) " %d"
+string(4) "0-9]"
+string(1) "d"
+Done