Lines Matching refs:needle
10 /* Prototype : int mb_strripos(string haystack, string needle [, int offset [, string encoding]])
74 echo "\n -- ASCII Strings, needle should be found --\n";
75 foreach ($ascii_needles as $needle) {
76 if ($needle == '!') {
77 echo "\n -- ASCII Strings, needle should not be found --\n";
81 var_dump(mb_strripos($haystack, $needle));
86 echo "\n -- Greek Strings, needle should be found --\n";
87 foreach ($greek_needles as $needle) {
88 if ($needle == '!') {
89 echo "\n -- ASCII Strings, needle should not be found --\n";
93 var_dump(mb_strripos($haystack, $needle));
103 -- ASCII Strings, needle should be found --
117 -- ASCII Strings, needle should not be found --
131 -- Greek Strings, needle should be found --
145 -- ASCII Strings, needle should not be found --