Home
last modified time | relevance | path

Searched refs:haystack (Results 1 – 4 of 4) sorted by relevance

/dokuwiki/inc/
H A DIp.php31 * @param string $haystack The CIDR range as an IP followed by a forward
40 public static function ipInRange(string $needle, string $haystack): bool argument
42 $range = explode('/', $haystack);
52 throw new Exception('Invalid IP range mask: ' . $haystack);
H A Dutf8.php208 function utf8_strpos($haystack, $needle, $offset = 0) argument
211 return PhpString::strpos($haystack, $needle, $offset);
/dokuwiki/inc/Utf8/
H A DPhpString.php346 * @param string $haystack
354 public static function strpos($haystack, $needle, $offset = 0) argument
360 $pos = strpos($haystack, $needle, $offset + $comp);
365 $length = self::strlen(substr($haystack, 0, $pos));
/dokuwiki/_test/core/
H A DphpQuery-onefile.php4343 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);