Home
last modified time | relevance | path

Searched refs:ASCII (Results 1 – 25 of 151) sorted by relevance

1234567

/PHP-7.4/ext/mbstring/tests/
H A Dmb_strlen_variation3.phpt111 -- ASCII String --
117 -- ASCII String --
123 -- ASCII String --
129 -- ASCII String --
135 -- ASCII String --
141 -- ASCII String --
147 -- ASCII String --
153 -- ASCII String --
159 -- ASCII String --
165 -- ASCII String --
[all …]
H A Dmb_substr_variation4.phpt56 -- ASCII String --
62 -- ASCII String --
68 -- ASCII String --
74 -- ASCII String --
80 -- ASCII String --
86 -- ASCII String --
92 -- ASCII String --
98 -- ASCII String --
104 -- ASCII String --
110 -- ASCII String --
[all …]
H A Dmb_substr_variation5.phpt57 -- ASCII String --
63 -- ASCII String --
69 -- ASCII String --
75 -- ASCII String --
81 -- ASCII String --
87 -- ASCII String --
93 -- ASCII String --
99 -- ASCII String --
105 -- ASCII String --
111 -- ASCII String --
[all …]
H A Dmb_substr_variation6.phpt61 -- ASCII String --
67 -- ASCII String --
73 -- ASCII String --
79 -- ASCII String --
85 -- ASCII String --
91 -- ASCII String --
97 -- ASCII String --
103 -- ASCII String --
109 -- ASCII String --
115 -- ASCII String --
[all …]
H A Dmb_substr_variation7.phpt62 -- ASCII String --
68 -- ASCII String --
74 -- ASCII String --
80 -- ASCII String --
86 -- ASCII String --
92 -- ASCII String --
98 -- ASCII String --
104 -- ASCII String --
110 -- ASCII String --
116 -- ASCII String --
[all …]
H A Dmb_stripos_variation5_Bug45923.phpt38 echo "-- ASCII String --\n";
50 -- ASCII String --
60 -- ASCII String --
66 -- ASCII String --
72 -- ASCII String --
78 -- ASCII String --
84 -- ASCII String --
90 -- ASCII String --
100 -- ASCII String --
110 -- ASCII String --
[all …]
H A Dmb_strpos_variation5.phpt38 echo "-- ASCII String --\n";
50 -- ASCII String --
60 -- ASCII String --
66 -- ASCII String --
72 -- ASCII String --
78 -- ASCII String --
84 -- ASCII String --
90 -- ASCII String --
100 -- ASCII String --
110 -- ASCII String --
[all …]
H A Dmb_ereg_variation6.phpt45 echo "-- ASCII String: --\n";
85 -- ASCII String: --
99 -- ASCII String: --
113 -- ASCII String: --
124 -- ASCII String: --
138 -- ASCII String: --
152 -- ASCII String: --
166 -- ASCII String: --
180 -- ASCII String: --
H A Dmb_substr_basic.phpt18 * Test Basic Functionality of mb_substr with ASCII characters and multibyte strings.
27 echo "\n-- ASCII string 1 --\n";
30 echo "\n-- ASCII string 2 --\n";
46 -- ASCII string 1 --
49 -- ASCII string 2 --
H A Dmb_internal_encoding.phpt23 // ASCII
24 $r = mb_internal_encoding('ASCII');
55 ASCII
60 ASCII
64 ASCII
68 ASCII
H A Dmb_strpos_basic.phpt16 * Test basic functionality of mb_strpos with ASCII and multibyte characters
27 echo "\n-- ASCII string 1 --\n";
30 echo "\n-- ASCII string 2 --\n";
46 -- ASCII string 1 --
49 -- ASCII string 2 --
H A Dbug43840.phpt17 * The multibyte string should be returning the same results as the ASCII string.
30 echo"--ASCII String:--\n";
38 --ASCII String:--
44 --ASCII String:--
52 --ASCII String:--
62 --ASCII String:--
72 --ASCII String:--
H A Dmb_detect_order.phpt27 $a[] = 'ASCII';
50 ASCII, JIS, UTF-8, EUC-JP, SJIS
54 ASCII, JIS, EUC-JP, UTF-8
57 ASCII, JIS, EUC-JP, UTF-8
59 ASCII, JIS, EUC-JP, UTF-8
H A Dmb_strripos_variation5_Bug45923.phpt39 echo "-- ASCII String --\n";
51 -- ASCII String --
57 -- ASCII String --
63 -- ASCII String --
69 -- ASCII String --
75 -- ASCII String --
85 -- ASCII String --
95 -- ASCII String --
105 -- ASCII String --
H A Dmb_strtolower_variation3.phpt2 Test mb_strtolower() function : usage variations - pass mixed ASCII and non-ASCII strings
16 * Pass a Japanese string and a mixed Japanese and ASCII string to mb_strtolower
26 echo "\n-- Mixed string (mulitbyte and ASCII characters) --\n";
49 -- Mixed string (mulitbyte and ASCII characters) --
H A Dmb_strtoupper_variation3.phpt2 Test mb_strtoupper() function : usage varitations - pass mixed ASCII and non-ASCII strings
16 * Pass a Japanese string and a mixed Japanese and ASCII string to mb_strtolower
27 echo "\n-- Mixed string (mulitbyte and ASCII characters) --\n";
50 -- Mixed string (mulitbyte and ASCII characters) --
H A Dmb_strrpos_basic.phpt27 echo "\n-- ASCII string 1 --\n";
30 echo "\n-- ASCII string 2 --\n";
46 -- ASCII string 1 --
49 -- ASCII string 2 --
/PHP-7.4/ext/standard/tests/strings/
H A Dstrncasecmp_variation1.phpt14 for($ASCII = 65; $ASCII <= 90; $ASCII++) {
15 …var_dump( strncasecmp( chr($ASCII), chr($ASCII), 1 ) ); //comparing uppercase letter with corresp…
16 …var_dump( strncasecmp( chr($ASCII), chr($ASCII + 32), 1 ) ); //comparing uppercase letter with co…
20 for($ASCII = 97; $ASCII <= 122; $ASCII++) {
21 …var_dump( strncasecmp( chr($ASCII), chr($ASCII), 1 ) ); //comparing lowercase letter with corresp…
22 …var_dump( strncasecmp( chr($ASCII), chr($ASCII - 32), 1 ) ); //comparing lowercase letter with co…
H A Dstrncmp_variation1.phpt14 for($ASCII = 65; $ASCII <= 90; $ASCII++) {
15 …var_dump( strncmp( chr($ASCII), chr($ASCII), 1 ) ); //comparing uppercase letters with uppercase …
16 …var_dump( strncmp( chr($ASCII), chr($ASCII + 32), 1 ) ); //comparing uppercase letters with lower…
20 for($ASCII = 97; $ASCII <= 122; $ASCII++) {
21 …var_dump( strncmp( chr($ASCII), chr($ASCII), 1 ) ); //comparing lowercase letters with lowercase …
22 …var_dump( strncmp( chr($ASCII), chr($ASCII - 32), 1 ) ); //comparing lowercase letters with upper…
H A Daddcslashes_002.phpt9 /* charlist "\0..\37" would escape all characters with ASCII code between 0 and 31 */
10 echo "\n*** Testing addcslashes() with ASCII code between 0 and 31 ***\n";
28 *** Testing addcslashes() with ASCII code between 0 and 31 ***
/PHP-7.4/ext/iconv/tests/
H A Diconv_strpos_variation5.phpt39 echo "-- ASCII String --\n";
51 -- ASCII String --
61 -- ASCII String --
67 -- ASCII String --
73 -- ASCII String --
79 -- ASCII String --
85 -- ASCII String --
91 -- ASCII String --
97 -- ASCII String --
103 -- ASCII String --
[all …]
H A Diconv_substr_basic.phpt20 * Test Basic Functionality of iconv_substr with ASCII characters and multibyte strings.
29 echo "\n-- ASCII string 1 --\n";
32 echo "\n-- ASCII string 2 --\n";
48 -- ASCII string 1 --
51 -- ASCII string 2 --
H A Diconv_strpos_basic.phpt18 * Test basic functionality of iconv_strpos with ASCII and multibyte characters
29 echo "\n-- ASCII string 1 --\n";
32 echo "\n-- ASCII string 2 --\n";
48 -- ASCII string 1 --
51 -- ASCII string 2 --
H A Diconv_strrpos_basic.phpt29 echo "\n-- ASCII string 1 --\n";
32 echo "\n-- ASCII string 2 --\n";
48 -- ASCII string 1 --
51 -- ASCII string 2 --
/PHP-7.4/ext/tokenizer/tests/
H A Dbad_character.phpt32 Warning: Unexpected character in input: '%s' (ASCII=1) state=0 in %s on line %d
38 Warning: Unexpected character in input: '%s' (ASCII=1) state=0 in %s on line %d
40 Warning: Unexpected character in input: '%s' (ASCII=2) state=0 in %s on line %d
42 Warning: Unexpected character in input: '%s' (ASCII=3) state=0 in %s on line %d

Completed in 36 milliseconds

1234567