summaryrefslogtreecommitdiff
path: root/ext/standard/tests/strings/vsprintf_variation16_64bit.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/standard/tests/strings/vsprintf_variation16_64bit.phpt')
-rw-r--r--ext/standard/tests/strings/vsprintf_variation16_64bit.phpt8
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/standard/tests/strings/vsprintf_variation16_64bit.phpt b/ext/standard/tests/strings/vsprintf_variation16_64bit.phpt
index 91a69c7e70..8783615371 100644
--- a/ext/standard/tests/strings/vsprintf_variation16_64bit.phpt
+++ b/ext/standard/tests/strings/vsprintf_variation16_64bit.phpt
@@ -7,7 +7,7 @@ if (PHP_INT_SIZE != 8) die("skip this test is for 64bit platform only");
--FILE--
<?php
/* Prototype : string vsprintf(string format, array args)
- * Description: Return a formatted string
+ * Description: Return a formatted string
* Source code: ext/standard/formatted_print.c
*/
@@ -19,7 +19,7 @@ if (PHP_INT_SIZE != 8) die("skip this test is for 64bit platform only");
echo "*** Testing vsprintf() : unsigned formats and signed & other types of values ***\n";
// defining array of unsigned formats
-$formats =
+$formats =
'%u %+u %-u
%lu %Lu %4u %-4u
%10.4u %-10.4u %.4u
@@ -57,9 +57,9 @@ $args_array = array(
true, TRUE, FALSE,
0, 1, 1, 0,
1, TRUE, 0, FALSE),
-
+
);
-
+
// looping to test vsprintf() with different unsigned formats from the above $format array
// and with signed and other types of values from the above $args_array array
$counter = 1;