summaryrefslogtreecommitdiff
path: root/ext/standard/tests/general_functions/strval.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/standard/tests/general_functions/strval.phpt')
-rw-r--r--ext/standard/tests/general_functions/strval.phpt28
1 files changed, 14 insertions, 14 deletions
diff --git a/ext/standard/tests/general_functions/strval.phpt b/ext/standard/tests/general_functions/strval.phpt
index 2e1e81c2ee..b2c5cd8b76 100644
--- a/ext/standard/tests/general_functions/strval.phpt
+++ b/ext/standard/tests/general_functions/strval.phpt
@@ -21,27 +21,27 @@ EOD;
/* null heredoc string */
$heredoc_empty_string = <<<EOD
EOD;
-/* heredoc string with NULL */
+/* heredoc string with NULL */
$heredoc_NULL_string = <<<EOD
NULL
EOD;
-// different valid scalar vlaues
+// different valid scalar vlaues
$scalars = array(
/* integers */
0,
1,
-1,
-2147483648, // max negative integer value
- -2147483647,
+ -2147483647,
2147483647, // max positive integer value
2147483640,
0x123B, // integer as hexadecimal
0x12ab,
0Xfff,
0XFA,
-
- /* floats */
+
+ /* floats */
-0x80000000, // max negative integer as hexadecimal
0x7fffffff, // max positive integer as hexadecimal
0x7FFFFFFF, // max positive integer as hexadecimal
@@ -66,12 +66,12 @@ $scalars = array(
.0034E-30,
/* booleans */
- true,
+ true,
TRUE,
FALSE,
- false,
+ false,
- /* strings */
+ /* strings */
"",
'',
" ",
@@ -91,11 +91,11 @@ $scalars = array(
"true",
/*"\0123",
"\0x12FF",*/
- $heredoc_string,
+ $heredoc_string,
$heredoc_numeric_string,
$heredoc_empty_string
);
-/* loop to check that strval() recognizes different
+/* loop to check that strval() recognizes different
scalar values and retuns the string conversion of same */
$loop_counter = 1;
foreach ($scalars as $scalar ) {
@@ -112,7 +112,7 @@ $dfp = opendir( dirname(__FILE__) );
$unset_var = 10;
unset ($unset_var);
-// non_scalar values, objects, arrays, resources and boolean
+// non_scalar values, objects, arrays, resources and boolean
class foo
{
function __toString() {
@@ -133,7 +133,7 @@ $not_scalars = array (
@$unset_var, // unset variable
@$undefined_var
);
-/* loop through the $not_scalars to see working of
+/* loop through the $not_scalars to see working of
strval() on objects, arrays, boolean and others */
$loop_counter = 1;
foreach ($not_scalars as $value ) {
@@ -145,9 +145,9 @@ echo "\n*** Testing error conditions ***\n";
//Zero argument
var_dump( strval() );
-//arguments more than expected
+//arguments more than expected
var_dump( strval( $scalars[0], $scalars[1]) );
-
+
echo "Done\n";
// close the resources used