Searched refs:grapheme_strripos (Results 1 – 8 of 8) sorted by relevance
/PHP-8.0/ext/intl/tests/ |
H A D | grapheme_out_of_bounds.phpt | 10 var_dump(grapheme_strripos("foo", "bar", 3)); 14 var_dump(grapheme_strripos("äöü", "bar", 3)); 21 var_dump(grapheme_strripos("foo", "bar", -3)); 25 var_dump(grapheme_strripos("äöü", "bar", -3)); 32 var_dump(grapheme_strripos("", "bar", 0)); 52 var_dump(grapheme_strripos("foo", "bar", 4)); 72 var_dump(grapheme_strripos("äöü", "bar", 4)); 95 var_dump(grapheme_strripos("foo", "bar", -4)); 115 var_dump(grapheme_strripos("äöü", "bar", -4)); 138 var_dump(grapheme_strripos("äöü", "", 4)); [all …]
|
H A D | grapheme_empty.phpt | 16 var_dump(grapheme_strripos("abc", "")); 17 var_dump(grapheme_strripos("abc", "", 1)); 28 var_dump(grapheme_strripos("äbc", "")); 29 var_dump(grapheme_strripos("äbc", "", 1));
|
H A D | bug74264.phpt | 12 grapheme_strripos('DÉJÀÀÀÀ', 'à', $offset)
|
H A D | grapheme.phpt | 946 find "D" in "abc" - grapheme_strripos = false == false 947 find "c" in "abC" - grapheme_strripos = 2 == 2 948 find "B" in "abc" - grapheme_strripos = 1 == 1 949 find "a" in "Abc" - grapheme_strripos = 0 == 0 950 find "A" in "abc" - grapheme_strripos from 0 = 0 == 0 952 find "A" in "ababc" - grapheme_strripos from 1 = 2 == 2 962 find "Ab" in "abC" - grapheme_strripos = 0 == 0 963 find "bc" in "aBC" - grapheme_strripos = 1 == 1 964 find "Abc" in "abC" - grapheme_strripos = 0 == 0 966 find "ab" in "ABc" - grapheme_strripos from 0 = 0 == 0 [all …]
|
H A D | grapheme2.phpt | 934 find "D" in "abc" - grapheme_strripos = false == false 935 find "c" in "abC" - grapheme_strripos = 2 == 2 936 find "B" in "abc" - grapheme_strripos = 1 == 1 937 find "a" in "Abc" - grapheme_strripos = 0 == 0 938 find "A" in "abc" - grapheme_strripos from 0 = 0 == 0 940 find "A" in "ababc" - grapheme_strripos from 1 = 2 == 2 950 find "Ab" in "abC" - grapheme_strripos = 0 == 0 951 find "bc" in "aBC" - grapheme_strripos = 1 == 1 952 find "Abc" in "abC" - grapheme_strripos = 0 == 0 954 find "ab" in "ABc" - grapheme_strripos from 0 = 0 == 0 [all …]
|
/PHP-8.0/ext/intl/grapheme/ |
H A D | grapheme_string.c | 269 PHP_FUNCTION(grapheme_strripos) in PHP_FUNCTION() argument
|
/PHP-8.0/ext/intl/ |
H A D | php_intl_arginfo.h | 895 ZEND_FUNCTION(grapheme_strripos); 1085 ZEND_FE(grapheme_strripos, arginfo_grapheme_strripos)
|
H A D | php_intl.stub.php | 258 function grapheme_strripos(string $haystack, string $needle, int $offset = 0): int|false {} function
|
Completed in 23 milliseconds