summaryrefslogtreecommitdiff
path: root/ext/standard/tests/strings/sprintf_variation17.phpt
diff options
context:
space:
mode:
authorRaghubansh Kumar <kraghuba@php.net>2007-09-29 16:54:57 +0000
committerRaghubansh Kumar <kraghuba@php.net>2007-09-29 16:54:57 +0000
commit2a22e422addc07bce89be77f5e61cf47a542f67c (patch)
treea45252c10945ad0c78ef58d0f60fc31e9f92fa5d /ext/standard/tests/strings/sprintf_variation17.phpt
parentb9ccaf44fb654024acfae9b6dcef120bbd099131 (diff)
downloadphp-git-2a22e422addc07bce89be77f5e61cf47a542f67c.tar.gz
New testcases for sprintf() function
Diffstat (limited to 'ext/standard/tests/strings/sprintf_variation17.phpt')
-rw-r--r--ext/standard/tests/strings/sprintf_variation17.phpt78
1 files changed, 78 insertions, 0 deletions
diff --git a/ext/standard/tests/strings/sprintf_variation17.phpt b/ext/standard/tests/strings/sprintf_variation17.phpt
new file mode 100644
index 0000000000..08028f8fe1
--- /dev/null
+++ b/ext/standard/tests/strings/sprintf_variation17.phpt
@@ -0,0 +1,78 @@
+--TEST--
+Test sprintf() function : usage variations - string 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() : string formats with resource values ***\n";
+
+// resource type variable
+$fp = fopen (__FILE__, "r");
+$dfp = opendir ( dirname(__FILE__) );
+
+// array of resource values
+$resource_values = array (
+ $fp,
+ $dfp
+);
+
+// array of string formats
+$string_formats = array(
+ "%s", "%hs", "%ls",
+ "%Ls"," %s", "%s ",
+ "\t%s", "\n%s", "%4s",
+ "%30s", "%[a-zA-Z0-9]", "%*s"
+);
+
+$count = 1;
+foreach($resource_values as $resource_value) {
+ echo "\n-- Iteration $count --\n";
+
+ foreach($string_formats as $format) {
+ var_dump( sprintf($format, $resource_value) );
+ }
+ $count++;
+};
+
+// closing the resources
+fclose($fp);
+fclose($dfp);
+
+echo "Done";
+?>
+--EXPECTF--
+*** Testing sprintf() : string formats with resource values ***
+
+-- Iteration 1 --
+string(%d) "Resource id #%d"
+string(1) "s"
+string(%d) "Resource id #%d"
+string(1) "s"
+string(%d) " Resource id #%d"
+string(%d) "Resource id #%d "
+string(%d) " Resource id #%d"
+string(%d) "
+Resource id #%d"
+string(%d) "Resource id #%d"
+string(%d) " Resource id #%d"
+string(10) "a-zA-Z0-9]"
+string(1) "s"
+
+-- Iteration 2 --
+string(%d) "Resource id #%d"
+string(1) "s"
+string(%d) "Resource id #%d"
+string(1) "s"
+string(%d) " Resource id #%d"
+string(%d) "Resource id #%d "
+string(%d) " Resource id #%d"
+string(%d) "
+Resource id #%d"
+string(%d) "Resource id #%d"
+string(%d) " Resource id #%d"
+string(10) "a-zA-Z0-9]"
+string(1) "s"
+Done