Searched refs:haystack (Results 1 – 4 of 4) sorted by relevance
| /dokuwiki/inc/ |
| H A D | Ip.php | 31 * @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 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 | 346 * @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 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);
|