summaryrefslogtreecommitdiff
path: root/ext/ctype/tests/ctype_space_variation2.phpt
blob: 146c7137f06dc68919e5d7013a194abba900189a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
--TEST--
Test ctype_space() function : usage variations - different integers
--SKIPIF--
<?php require_once('skipif.inc'); ?>
--FILE--
<?php
/*
 * 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);
?>
--EXPECT--
*** 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