Searched refs:needle (Results 1 – 4 of 4) sorted by relevance
| /dokuwiki/inc/ |
| H A D | Ip.php | 29 * @param string $needle The IP to test, either IPv4 in dotted decimal 40 public static function ipInRange(string $needle, string $haystack): bool argument 56 $needle = Ip::ipToNumber($needle); 62 $needle_up = Ip32::bitmask64On32($needle['upper'], $maskLengthUpper); 64 $needle_lo = Ip32::bitmask64On32($needle['lower'], $maskLengthLower); 70 $needle_up = $needle['upper'] & $maskUpper; 72 $needle_lo = $needle['lower'] & $maskLower;
|
| H A D | utf8.php | 208 function utf8_strpos($haystack, $needle, $offset = 0) argument 211 return PhpString::strpos($haystack, $needle, $offset);
|
| /dokuwiki/inc/Utf8/ |
| H A D | PhpString.php | 347 * @param string $needle 354 public static function strpos($haystack, $needle, $offset = 0) argument 360 $pos = strpos($haystack, $needle, $offset + $comp);
|
| /dokuwiki/_test/core/ |
| H A D | phpQuery-onefile.php | 4343 function mb_strpos($haystack, $needle, $offset=0) argument 4345 return strpos($haystack, $needle, $offset); 4355 function mb_stripos($haystack, $needle, $offset=0) argument 4357 return stripos($haystack, $needle, $offset); 4381 function mb_substr_count($haystack, $needle) argument 4383 return substr_count($haystack, $needle);
|