php-src/ext/ctype/tests/ctype_space_variation2.phpt

38 lines
954 B
Plaintext
Raw Normal View History

2008-03-17 09:52:02 +00:00
--TEST--
Test ctype_space() function : usage variations - different integers
2008-07-13 21:34:15 +00:00
--SKIPIF--
<?php require_once('skipif.inc'); ?>
2008-03-17 09:52:02 +00:00
--FILE--
<?php
/* Prototype : bool ctype_space(mixed $c)
* Description: Checks for whitespace character(s)
* Source code: ext/ctype/ctype.c
*/
/*
* Pass different integers to ctype_space() to test which character codes are considered
* valid whitespace characters
*/
echo "*** Testing ctype_space() : usage variations ***\n";
$orig = setlocale(LC_CTYPE, "C");
for ($c = 1; $c < 256; $c++) {
if (ctype_space($c)) {
echo "character code $c is a space character\n";
}
}
setlocale(LC_CTYPE, $orig);
?>
===DONE===
--EXPECTF--
*** Testing ctype_space() : usage variations ***
character code 9 is a space character
character code 10 is a space character
character code 11 is a space character
character code 12 is a space character
character code 13 is a space character
character code 32 is a space character
===DONE===