summaryrefslogtreecommitdiff
path: root/ext/ctype/tests/ctype_xdigit_basic.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/ctype/tests/ctype_xdigit_basic.phpt')
-rw-r--r--ext/ctype/tests/ctype_xdigit_basic.phpt8
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/ctype/tests/ctype_xdigit_basic.phpt b/ext/ctype/tests/ctype_xdigit_basic.phpt
index 179115d23d..7643cc52ed 100644
--- a/ext/ctype/tests/ctype_xdigit_basic.phpt
+++ b/ext/ctype/tests/ctype_xdigit_basic.phpt
@@ -1,16 +1,16 @@
--TEST--
-Test ctype_xdigit() function : basic functionality
+Test ctype_xdigit() function : basic functionality
--SKIPIF--
<?php require_once('skipif.inc'); ?>
--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
*/
echo "*** Testing ctype_xdigit() : basic functionality ***\n";
-$orig = setlocale(LC_CTYPE, "C");
+$orig = setlocale(LC_CTYPE, "C");
$c1 = 'abcdefABCDEF0123456789';
$c2 = 'face 034';
@@ -18,7 +18,7 @@ $c2 = 'face 034';
var_dump(ctype_xdigit($c1));
var_dump(ctype_xdigit($c2));
-setlocale(LC_CTYPE, $orig);
+setlocale(LC_CTYPE, $orig);
?>
===DONE===
--EXPECTF--