summaryrefslogtreecommitdiff
path: root/ext/ctype/tests/ctype_xdigit_variation1.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/ctype/tests/ctype_xdigit_variation1.phpt')
-rw-r--r--ext/ctype/tests/ctype_xdigit_variation1.phpt10
1 files changed, 5 insertions, 5 deletions
diff --git a/ext/ctype/tests/ctype_xdigit_variation1.phpt b/ext/ctype/tests/ctype_xdigit_variation1.phpt
index 963755b358..9f819bde16 100644
--- a/ext/ctype/tests/ctype_xdigit_variation1.phpt
+++ b/ext/ctype/tests/ctype_xdigit_variation1.phpt
@@ -5,7 +5,7 @@ Test ctype_xdigit() function : usage variations - different data typse as $c arg
--FILE--
<?php
/* Prototype : bool ctype_xdigit(mixed $c)
- * Description: Checks for character(s) representing a hexadecimal digit
+ * Description: Checks for character(s) representing a hexadecimal digit
* Source code: ext/ctype/ctype.c
*/
@@ -15,7 +15,7 @@ Test ctype_xdigit() function : usage variations - different data typse as $c arg
echo "*** Testing ctype_xdigit() : usage variations ***\n";
-$orig = setlocale(LC_CTYPE, "C");
+$orig = setlocale(LC_CTYPE, "C");
//get an unset variable
$unset_var = 10;
@@ -62,7 +62,7 @@ $inputs = array(
false,
TRUE,
FALSE,
-
+
// empty data
/*16*/ "",
'',
@@ -72,7 +72,7 @@ $inputs = array(
/*19*/ "456",
'def',
$heredoc,
-
+
// object data
/*22*/ new classA(),
@@ -96,7 +96,7 @@ foreach($inputs as $input) {
fclose($fp);
-setlocale(LC_CTYPE, $orig);
+setlocale(LC_CTYPE, $orig);
?>
===DONE===
--EXPECTF--