summaryrefslogtreecommitdiff
path: root/ext/ctype/tests/ctype_alnum_variation3.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/ctype/tests/ctype_alnum_variation3.phpt')
-rw-r--r--ext/ctype/tests/ctype_alnum_variation3.phpt6
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/ctype/tests/ctype_alnum_variation3.phpt b/ext/ctype/tests/ctype_alnum_variation3.phpt
index a9da6c932a..520c8ce344 100644
--- a/ext/ctype/tests/ctype_alnum_variation3.phpt
+++ b/ext/ctype/tests/ctype_alnum_variation3.phpt
@@ -5,7 +5,7 @@ Test ctype_alnum() function : usage variations - different string values
--FILE--
<?php
/* Prototype : bool ctype_alnum(mixed $c)
- * Description: Checks for alphanumeric character(s)
+ * Description: Checks for alphanumeric character(s)
* Source code: ext/ctype/ctype.c
*/
@@ -15,7 +15,7 @@ Test ctype_alnum() function : usage variations - different string values
echo "*** Testing ctype_alnum() : usage variations ***\n";
-$orig = setlocale(LC_CTYPE, "C");
+$orig = setlocale(LC_CTYPE, "C");
$values = array(
/*1*/ "This string contains just letters and spaces", // Simple string
@@ -39,7 +39,7 @@ $values = array(
'abc123\n',
/*20*/ 'abc 123',
'',
- ' ',
+ ' ',
/*23*/ base64_decode("w4DDoMOHw6fDiMOo") // non-ascii characters
);