summaryrefslogtreecommitdiff
path: root/ext/standard/tests/strings/vprintf_variation14.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/standard/tests/strings/vprintf_variation14.phpt')
-rw-r--r--ext/standard/tests/strings/vprintf_variation14.phpt8
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/standard/tests/strings/vprintf_variation14.phpt b/ext/standard/tests/strings/vprintf_variation14.phpt
index bbb15e149a..830b7f8e15 100644
--- a/ext/standard/tests/strings/vprintf_variation14.phpt
+++ b/ext/standard/tests/strings/vprintf_variation14.phpt
@@ -7,7 +7,7 @@ if (PHP_INT_SIZE != 4) die("skip this test is for 32bit platform only");
--FILE--
<?php
/* Prototype : string vprintf(string format, array args)
- * Description: Output a formatted string
+ * Description: Output a formatted string
* Source code: ext/standard/formatted_print.c
*/
@@ -19,7 +19,7 @@ if (PHP_INT_SIZE != 4) die("skip this test is for 32bit platform only");
echo "*** Testing vprintf() : hexa formats and non-hexa values ***\n";
// defining array of different hexa formats
-$formats =
+$formats =
'%x %+x %-x
%lx %Lx %4x %-4x
%10.4x %-10.4x %.4x
@@ -64,12 +64,12 @@ $args_array = array(
true, TRUE, FALSE,
0, 1, 1, 0,
1, TRUE, 0, FALSE),
-
+
);
// looping to test vprintf() with different hexa formats from the above $format array
// and with non-hexa values from the above $args_array array
-
+
$counter = 1;
foreach($args_array as $args) {
echo "\n-- Iteration $counter --\n";