Home
last modified time | relevance | path

Searched refs:strpos (Results 1 – 25 of 66) sorted by path

123

/dokuwiki/bin/
H A Dwantedpages.php111 if (strpos($entry, '_') === 0) {
/dokuwiki/inc/Action/
H A DSearch.php104 if (strpos($QUERY, '*') === false) {
107 if (strpos($part, '@') === 0) {
110 if (strpos($part, 'ns:') === 0) {
113 if (strpos($part, '^') === 0) {
116 if (strpos($part, '-ns:') === 0) {
/dokuwiki/inc/
H A DAjax.php382 if (strpos(getNS($pid), $id) !== false) {
H A DMailer.class.php47 if (strpos($server, '.') === false) $server .= '.localhost';
222 if (strpos($text, '@EMAILSIGNATURE@') === false) {
354 if ($count > 0 || strpos($name, ',') !== false) {
429 if (strpos($text, ',') !== false || !Clean::isASCII($text)) {
H A DPassHash.php412 $iter = strpos($itoa64, $iterc);
H A DSafeFN.class.php109 if ($codepoint < 127 && (strpos(self::$plain . self::$post_indicator, chr($codepoint)) !== false)) {
H A Dchangelog.php352 if (($ns) && (strpos($recent['id'], $ns . ':') !== 0)) return false;
H A Dcommon.php480 strpos($INPUT->server->str('SERVER_SOFTWARE'), 'Microsoft-IIS') === false
1417 if (strpos($q, '//') !== false) return '';
1865 (strpos($INPUT->server->str('GATEWAY_INTERFACE'), 'CGI') !== false) &&
1927 if (isset($_COOKIE['DOKU_PREFS']) && strpos($_COOKIE['DOKU_PREFS'], $enc_pref) !== false) {
H A Dfulltext.php111 if (strpos($text, $phrase) !== false) {
127 if (strpos($id, $ns) === 0) {
307 if ((strpos($in_ns ? $p_id : noNSorNS($p_id), $cleaned) !== false)) {
322 if (strpos($p_id, $ns) !== 0) {
329 if (strpos($p_id, $notns) === 0) {
396 $pos = PhpString::strpos(
H A Dinfoutils.php105 if (strpos($headCommit, 'ref: ') === 0) {
495 if ($header === '' && is_string($msg) && strpos($msg, "\n") === false) {
H A Dinit.php155 $conf['gzip_output'] &= (strpos($httpAcceptEncoding, 'gzip') !== false);
H A Dio.php168 $pos = strpos($str, "\n");
172 $pos = strpos($str, "\n");
/dokuwiki/inc/Cache/
H A DCache.php209 $i = strpos($line, ',');
/dokuwiki/inc/Debug/
H A DPropertyDeprecationHelper.php122 if (strpos($obfuscatedProp, $obfuscatedPropTail, 1) !== false) {
/dokuwiki/inc/Extension/
H A DPluginController.php
H A DRemotePlugin.php
/dokuwiki/inc/File/
H A DPageResolver.php22 if (strpos($id, '#') !== false) {
H A DResolver.php68 if ($this->contextID !== '' && strpos($id, ':') === false) {
/dokuwiki/inc/Form/
H A DElement.php134 if (strpos($id, '__') === false) {
/dokuwiki/inc/HTTP/
H A DDokuHTTPClient.php41 strpos($_SERVER['HTTP_REFERER'], 'httpdebug') !== false
H A DHTTPClient.php115 if (strpos($url, '?')) {
/dokuwiki/inc/Menu/Item/
H A DAbstractItem.php87 if (strpos($label, '%s')) {
/dokuwiki/inc/Subscriptions/
H A DSubscriberManager.php193 if (strpos($line, ' ') === false) {
/dokuwiki/inc/Ui/
H A DSearch.php361 $firstColon = strpos((string)$namespace, ':', $baseNSLength + 1) ?: strlen($namespace);
/dokuwiki/inc/Utf8/
H A DPhpString.php344 * This is an Unicode aware replacement for strpos
351 * @see strpos()
354 public static function strpos($haystack, $needle, $offset = 0)
360 $pos = strpos($haystack, $needle, $offset + $comp);
363 public static function strpos($haystack, $needle, $offset = 0) global() function in dokuwiki\\Utf8\\PhpString

123