summaryrefslogtreecommitdiff
path: root/ext/standard/tests/strings/sprintf_variation34.phpt
diff options
context:
space:
mode:
authorPeter Kokot <peterkokot@gmail.com>2018-10-14 18:03:31 +0200
committerPeter Kokot <peterkokot@gmail.com>2018-10-14 19:46:15 +0200
commitd7a3edd45db8d91ddf09cba7c594c63e63f62709 (patch)
treeef4fe3e4794260b362dad72d3542fdbef0169b8e /ext/standard/tests/strings/sprintf_variation34.phpt
parentb0708fa2e7b31f1fbd9539486a35d33643e62461 (diff)
downloadphp-git-d7a3edd45db8d91ddf09cba7c594c63e63f62709.tar.gz
Trim trailing whitespace in *.phpt
Diffstat (limited to 'ext/standard/tests/strings/sprintf_variation34.phpt')
-rw-r--r--ext/standard/tests/strings/sprintf_variation34.phpt8
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/standard/tests/strings/sprintf_variation34.phpt b/ext/standard/tests/strings/sprintf_variation34.phpt
index 0dd38448ec..81e79d0c02 100644
--- a/ext/standard/tests/strings/sprintf_variation34.phpt
+++ b/ext/standard/tests/strings/sprintf_variation34.phpt
@@ -9,13 +9,13 @@ if (PHP_INT_SIZE != 4) {
--FILE--
<?php
/* Prototype : string sprintf(string $format [, mixed $arg1 [, mixed ...]])
- * Description: Return a formatted string
+ * Description: Return a formatted string
* Source code: ext/standard/formatted_print.c
*/
echo "*** Testing sprintf() : hexa formats with integer values ***\n";
-// array of integer values
+// array of integer values
$integer_values = array(
0,
1,
@@ -31,9 +31,9 @@ $integer_values = array(
-0x80000000, // max negative integer as hexadecimal
0x7fffffff, // max positive integer as hexadecimal
0x7FFFFFFF, // max positive integer as hexadecimal
- 0123, // integer as octal
+ 0123, // integer as octal
01, // should be quivalent to octal 1
- -020000000000, // max negative integer as octal
+ -020000000000, // max negative integer as octal
017777777777 // max positive integer as octal
);