Home
last modified time | relevance | path

Searched refs:needle (Results 101 – 107 of 107) sorted by last modified time

12345

/php-src/ext/intl/grapheme/
H A Dgrapheme_util.h26 zend_long grapheme_strrpos_ascii(char *haystack, size_t haystack_len, char *needle, size_t needle_l…
28 int32_t grapheme_strrpos_utf16(char *haystack, size_t haystack_len, char *needle, size_t needle_len…
29 int32_t grapheme_strpos_utf16(char *haystack, size_t haystack_len, char *needle, size_t needle_len,…
/php-src/ext/iconv/
H A Diconv.stub.php31 function iconv_strpos(string $haystack, string $needle, int $offset = 0, ?string $encoding = null):… argument
33 function iconv_strrpos(string $haystack, string $needle, ?string $encoding = null): int|false {} argument
/php-src/ext/iconv/tests/
H A Diconv_strpos.phpt9 function foo($haystk, $needle, $offset, $to_charset = false, $from_charset = false)
15 var_dump(strpos($haystk, $needle, $offset));
21 var_dump(iconv_strpos($haystk, $needle, $offset, $to_charset));
23 var_dump(iconv_strpos($haystk, $needle, $offset));
H A Diconv_strpos_error2.phpt13 $needle = 'world';
17 var_dump( iconv_strpos($haystack, $needle, $offset, $encoding) );
H A Diconv_strpos_variation5.phpt12 * and the needle appears at the same positions in both strings
H A Diconv_strrpos.phpt14 function foo($haystk, $needle, $to_charset = false, $from_charset = false)
21 var_dump(iconv_strrpos($haystk, $needle, $to_charset));
24 var_dump(iconv_strrpos($haystk, $needle));
H A Diconv_strrpos_error2.phpt14 $needle = '123';
18 var_dump(iconv_strrpos($haystack, $needle , $encoding));

Completed in 102 milliseconds

12345