/PHP-7.4/ext/mbstring/tests/ |
H A D | mb_strlen_variation3.phpt | 111 -- 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 D | mb_substr_variation4.phpt | 56 -- 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 D | mb_substr_variation5.phpt | 57 -- 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 D | mb_substr_variation6.phpt | 61 -- 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 D | mb_substr_variation7.phpt | 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 -- 116 -- ASCII String -- [all …]
|
H A D | mb_stripos_variation5_Bug45923.phpt | 38 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 D | mb_strpos_variation5.phpt | 38 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 D | mb_ereg_variation6.phpt | 45 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 D | mb_substr_basic.phpt | 18 * 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 D | mb_internal_encoding.phpt | 23 // ASCII 24 $r = mb_internal_encoding('ASCII'); 55 ASCII 60 ASCII 64 ASCII 68 ASCII
|
H A D | mb_strpos_basic.phpt | 16 * 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 D | bug43840.phpt | 17 * 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 D | mb_detect_order.phpt | 27 $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 D | mb_strripos_variation5_Bug45923.phpt | 39 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 D | mb_strtolower_variation3.phpt | 2 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 D | mb_strtoupper_variation3.phpt | 2 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 D | mb_strrpos_basic.phpt | 27 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 D | strncasecmp_variation1.phpt | 14 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 D | strncmp_variation1.phpt | 14 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 D | addcslashes_002.phpt | 9 /* 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 D | iconv_strpos_variation5.phpt | 39 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 D | iconv_substr_basic.phpt | 20 * 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 D | iconv_strpos_basic.phpt | 18 * 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 D | iconv_strrpos_basic.phpt | 29 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 D | bad_character.phpt | 32 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
|