Home
last modified time | relevance | path

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

123456789

/php-src/ext/mbstring/tests/
H A Dmb_strlen_variation3.phpt103 -- ASCII String --
109 -- ASCII String --
115 -- ASCII String --
121 -- ASCII String --
127 -- ASCII String --
133 -- ASCII String --
139 -- ASCII String --
145 -- ASCII String --
151 -- ASCII String --
157 -- ASCII String --
[all …]
H A Dmb_substr_variation4.phpt48 -- ASCII String --
54 -- ASCII String --
60 -- ASCII String --
66 -- ASCII String --
72 -- ASCII String --
78 -- ASCII String --
84 -- ASCII String --
90 -- ASCII String --
96 -- ASCII String --
102 -- ASCII String --
[all …]
H A Dmb_substr_variation5.phpt49 -- ASCII String --
55 -- 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 Dmb_substr_variation6.phpt53 -- ASCII String --
59 -- ASCII String --
65 -- ASCII String --
71 -- ASCII String --
77 -- ASCII String --
83 -- ASCII String --
89 -- ASCII String --
95 -- ASCII String --
101 -- ASCII String --
107 -- ASCII String --
[all …]
H A Dmb_substr_variation7.phpt54 -- ASCII String --
60 -- ASCII String --
66 -- ASCII String --
72 -- ASCII String --
78 -- ASCII String --
84 -- ASCII String --
90 -- ASCII String --
96 -- ASCII String --
102 -- ASCII String --
108 -- ASCII String --
[all …]
H A Dmb_stripos_variation5_Bug45923.phpt30 echo "-- ASCII String --\n";
49 -- ASCII String --
55 -- ASCII String --
61 -- ASCII String --
67 -- ASCII String --
73 -- ASCII String --
79 -- ASCII String --
85 -- ASCII String --
91 -- ASCII String --
97 -- ASCII String --
[all …]
H A Dmb_strpos_variation5.phpt29 echo "-- ASCII String --\n";
49 -- ASCII String --
55 -- ASCII String --
61 -- ASCII String --
67 -- ASCII String --
73 -- ASCII String --
79 -- ASCII String --
85 -- ASCII String --
91 -- ASCII String --
97 -- ASCII String --
[all …]
H A Dmb_strrpos_basic.phpt19 echo "\n-- ASCII string 1 --\n";
22 echo "\n-- ASCII string 2 --\n";
25 echo "\n-- ASCII string with negative offset --\n";
41 -- ASCII string 1 --
44 -- ASCII string 2 --
47 -- ASCII string with negative offset --
H A Dmb_stripos_empty_needle.phpt14 echo "\n-- ASCII string without offset --\n";
17 echo "\n-- ASCII string with in range positive offset --\n";
20 echo "\n-- ASCII string with in range negative offset --\n";
23 echo "\n-- ASCII string with out of bound positive offset --\n";
30 echo "\n-- ASCII string with out of bound negative offset --\n";
63 -- ASCII string without offset --
66 -- ASCII string with in range positive offset --
69 -- ASCII string with in range negative offset --
72 -- ASCII string with out of bound positive offset --
75 -- ASCII string with out of bound negative offset --
H A Dmb_strpos_empty_needle.phpt14 echo "\n-- ASCII string without offset --\n";
17 echo "\n-- ASCII string with in range positive offset --\n";
20 echo "\n-- ASCII string with in range negative offset --\n";
23 echo "\n-- ASCII string with out of bound positive offset --\n";
30 echo "\n-- ASCII string with out of bound negative offset --\n";
62 -- ASCII string without offset --
65 -- ASCII string with in range positive offset --
68 -- ASCII string with in range negative offset --
71 -- ASCII string with out of bound positive offset --
74 -- ASCII string with out of bound negative offset --
H A Dmb_strripos_empty_needle.phpt14 echo "\n-- ASCII string without offset --\n";
17 echo "\n-- ASCII string with in range positive offset --\n";
20 echo "\n-- ASCII string with in range negative offset --\n";
23 echo "\n-- ASCII string with out of bound positive offset --\n";
30 echo "\n-- ASCII string with out of bound negative offset --\n";
63 -- ASCII string without offset --
66 -- ASCII string with in range positive offset --
69 -- ASCII string with in range negative offset --
72 -- ASCII string with out of bound positive offset --
75 -- ASCII string with out of bound negative offset --
H A Dmb_strrpos_empty_needle.phpt14 echo "\n-- ASCII string without offset --\n";
17 echo "\n-- ASCII string with in range positive offset --\n";
20 echo "\n-- ASCII string with in range negative offset --\n";
23 echo "\n-- ASCII string with out of bound positive offset --\n";
30 echo "\n-- ASCII string with out of bound negative offset --\n";
63 -- ASCII string without offset --
66 -- ASCII string with in range positive offset --
69 -- ASCII string with in range negative offset --
72 -- ASCII string with out of bound positive offset --
75 -- ASCII string with out of bound negative offset --
H A Dmb_strpos_basic.phpt8 * Test basic functionality of mb_strpos with ASCII and multibyte characters
19 echo "\n-- ASCII string 1 --\n";
22 echo "\n-- ASCII string 2 --\n";
38 -- ASCII string 1 --
41 -- ASCII string 2 --
H A Dmb_substr_basic.phpt10 * Test Basic Functionality of mb_substr with ASCII characters and multibyte strings.
19 echo "\n-- ASCII string 1 --\n";
22 echo "\n-- ASCII string 2 --\n";
38 -- ASCII string 1 --
41 -- ASCII string 2 --
H A Dmb_strripos_variation5_Bug45923.phpt30 echo "-- ASCII String --\n";
50 -- ASCII String --
56 -- ASCII String --
62 -- ASCII String --
68 -- ASCII String --
74 -- ASCII String --
80 -- ASCII String --
86 -- ASCII String --
92 -- ASCII String --
H A Dmb_encode_mimeheader_basic4.phpt21 var_dump(mb_encode_mimeheader("?", "ASCII", "B"));
146 string(19) "=?US-ASCII?B?Pw==?="
147 string(18) "=?US-ASCII?Q?=3F?="
148 string(19) "=?US-ASCII?B?PQ==?="
149 string(18) "=?US-ASCII?Q?=3D?="
150 string(19) "=?US-ASCII?B?Xw==?="
151 string(18) "=?US-ASCII?Q?=5F?="
152 string(19) "=?US-ASCII?B?fw==?="
164 string(21) "o =?US-ASCII?B?AA==?="
167 string(27) "=aaaaaa= =?US-ASCII?Q?=3F?="
[all …]
H A Dgh11217.phpt2 GH-11217: Segfault in mb_strrpos/mb_strripos with ASCII encoding and negative offset
7 var_dump(mb_strrpos('foo', 'foo', -1, 'ASCII'));
8 var_dump(mb_strripos('foo', 'foo', -1, 'ASCII'));
H A Dbug81349.phpt2 Bug #81349: mb_detect_encoding misdetcts ASCII in some cases
8 echo(mb_detect_encoding("\xe4,a", ['ASCII', 'UTF-8', 'ISO-8859-1'])."\n");
9 echo(mb_detect_encoding("\xe4 a", ['ASCII', 'UTF-8', 'ISO-8859-1'])."\n");
/php-src/ext/standard/tests/strings/
H A Dstr_decrement_errors.phpt15 // Non-ASCII characters
41 str_decrement(): Argument #1 ($string) must be composed only of alphanumeric ASCII characters
42 str_decrement(): Argument #1 ($string) must be composed only of alphanumeric ASCII characters
43 str_decrement(): Argument #1 ($string) must be composed only of alphanumeric ASCII characters
44 str_decrement(): Argument #1 ($string) must be composed only of alphanumeric ASCII characters
45 str_decrement(): Argument #1 ($string) must be composed only of alphanumeric ASCII characters
46 str_decrement(): Argument #1 ($string) must be composed only of alphanumeric ASCII characters
47 str_decrement(): Argument #1 ($string) must be composed only of alphanumeric ASCII characters
48 str_decrement(): Argument #1 ($string) must be composed only of alphanumeric ASCII characters
49 str_decrement(): Argument #1 ($string) must be composed only of alphanumeric ASCII characters
[all …]
H A Dstr_increment_errors.phpt15 // Non-ASCII characters
41 str_increment(): Argument #1 ($string) must be composed only of alphanumeric ASCII characters
42 str_increment(): Argument #1 ($string) must be composed only of alphanumeric ASCII characters
43 str_increment(): Argument #1 ($string) must be composed only of alphanumeric ASCII characters
44 str_increment(): Argument #1 ($string) must be composed only of alphanumeric ASCII characters
45 str_increment(): Argument #1 ($string) must be composed only of alphanumeric ASCII characters
46 str_increment(): Argument #1 ($string) must be composed only of alphanumeric ASCII characters
47 str_increment(): Argument #1 ($string) must be composed only of alphanumeric ASCII characters
48 str_increment(): Argument #1 ($string) must be composed only of alphanumeric ASCII characters
49 str_increment(): Argument #1 ($string) must be composed only of alphanumeric ASCII characters
[all …]
H A Dstrncasecmp_variation1.phpt9 for($ASCII = 65; $ASCII <= 90; $ASCII++) {
10 …var_dump( strncasecmp( chr($ASCII), chr($ASCII), 1 ) ); //comparing uppercase letter with corresp…
11 …var_dump( strncasecmp( chr($ASCII), chr($ASCII + 32), 1 ) ); //comparing uppercase letter with co…
15 for($ASCII = 97; $ASCII <= 122; $ASCII++) {
16 …var_dump( strncasecmp( chr($ASCII), chr($ASCII), 1 ) ); //comparing lowercase letter with corresp…
17 …var_dump( strncasecmp( chr($ASCII), chr($ASCII - 32), 1 ) ); //comparing lowercase letter with co…
H A Dstrncmp_variation1.phpt9 for($ASCII = 65; $ASCII <= 90; $ASCII++) {
10 …var_dump( strncmp( chr($ASCII), chr($ASCII), 1 ) ); //comparing uppercase letters with uppercase …
11 …var_dump( strncmp( chr($ASCII), chr($ASCII + 32), 1 ) ); //comparing uppercase letters with lower…
15 for($ASCII = 97; $ASCII <= 122; $ASCII++) {
16 …var_dump( strncmp( chr($ASCII), chr($ASCII), 1 ) ); //comparing lowercase letters with lowercase …
17 …var_dump( strncmp( chr($ASCII), chr($ASCII - 32), 1 ) ); //comparing lowercase letters with upper…
/php-src/ext/iconv/tests/
H A Diconv_strpos_variation5.phpt31 echo "-- ASCII String --\n";
51 -- ASCII String --
57 -- ASCII String --
63 -- ASCII String --
69 -- ASCII String --
75 -- ASCII String --
81 -- ASCII String --
87 -- ASCII String --
93 -- ASCII String --
99 -- ASCII String --
[all …]
H A Diconv_strpos_basic.phpt10 * Test basic functionality of iconv_strpos with ASCII and multibyte characters
21 echo "\n-- ASCII string 1 --\n";
24 echo "\n-- ASCII string 2 --\n";
40 -- ASCII string 1 --
43 -- ASCII string 2 --
H A Diconv_substr_basic.phpt12 * Test Basic Functionality of iconv_substr with ASCII characters and multibyte strings.
21 echo "\n-- ASCII string 1 --\n";
24 echo "\n-- ASCII string 2 --\n";
40 -- ASCII string 1 --
43 -- ASCII string 2 --

Completed in 32 milliseconds

123456789