Home
last modified time | relevance | path

Searched refs:strpos (Results 26 – 50 of 66) sorted by last modified time

123

/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/parser/
H A Drenderer.php972 if (strpos($url, '?') !== false) {
/dokuwiki/inc/
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 DPassHash.php412 $iter = strpos($itoa64, $iterc);
H A Dchangelog.php352 if (($ns) && (strpos($recent['id'], $ns . ':') !== 0)) return false;
H A DAjax.php382 if (strpos(getNS($pid), $id) !== false) {
/dokuwiki/vendor/composer/
H A DClassLoader.php533 if (0 === strpos($class, $prefix)) {
/dokuwiki/lib/plugins/extension/
H A Dcli.php359 if ($filter && strpos($status, $filter) === false) {
/dokuwiki/lib/plugins/extension/helper/
H A Dextension.php1244 if (strpos($magic, "\x42\x5a") === 0) return 'bz';
1245 if (strpos($magic, "\x1f\x8b") === 0) return 'gz';
1246 if (strpos($magic, "\x50\x4b\x03\x04") === 0) return 'zip';
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/
H A DSSH1.php
H A DSSH2.php1741 if (strpos($this->kex_algorithm, 'curve25519-sha256') === 0 || strpos($this->kex_algorithm, 'ecdh-sha2-nistp') === 0) {
1742 $curve = strpos($this->kex_algorithm, 'curve25519-sha256') === 0 ?
1750 if (strpos($this->kex_algorithm, 'diffie-hellman-group-exchange') === 0) {
3179 $pos = strlen($match) ? strpos($this->interactiveBuffer, $match) : false;
/dokuwiki/vendor/marcusschwarz/lesserphp/
H A Dlessc.inc.php
/dokuwiki/bin/
H A Dwantedpages.php111 if (strpos($entry, '_') === 0) {
/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
/dokuwiki/lib/plugins/safefnrecode/
H A Daction.php64 if (strpos($file, '%') === false) continue; # no encoding used
/dokuwiki/lib/plugins/styling/
H A Daction.php48 strpos($event->data['link'][$i]['href'], 'lib/exe/css.php') !== false
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/File/
H A DASN1.php1277 } elseif (strpos($content, '.') !== false) {
1285 if (strpos($content, '-') !== false || strpos($content, '+') !== false) {
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Math/
H A DBigInteger.php
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/System/SSH/
H A DAgent.php138 if (substr($address, 0, 9) != '\\\\.\\pipe\\' || strpos(substr($address, 9), '\\') !== false) {
/dokuwiki/vendor/simplepie/simplepie/
H A Dautoloader.php120 if (strpos($class, 'SimplePie') !== 0)
/dokuwiki/vendor/geshi/geshi/src/
H A Dgeshi.php696 if(strpos($path,':')) {
699 if(!preg_match('#^[a-zA-Z]:#', $path) || false !== strpos($path, ':', 2)) {
710 if(GESHI_SECURITY_PARANOID && false !== strpos($path, '/.')) {
714 if(GESHI_SECURITY_PARANOID && false !== strpos($path, '..')) {
2235 $open_pos = strpos($code, $open, $i);
2246 strpos($code, $close, $matches[$dk][$open]['next_match']+1);
2312 $close_pos = strpos($code, $next_match_pointer['close'], $i);
2588 $close_pos = strpos($part, $char, $start);
2633 $simple_escape = strpos($part, $this->language_data['ESCAPE_CHAR'], $start);
2762 while ($close_pos = strpos(
[all...]
/dokuwiki/vendor/simplepie/simplepie/src/
H A DIRI.php362 while (strpos($input, './') !== false || strpos($input, '/.') !== false || $input === '.' || $input === '..') {
364 if (strpos($input, '../') === 0) {
366 } elseif (strpos($input, './') === 0) {
370 elseif (strpos($input, '/./') === 0) {
376 elseif (strpos($input, '/../') === 0) {
388 elseif (($pos = strpos($input, '/', 1)) !== false) {
699 strpos($this->ipath, ':') !== false &&
700 strpos($this->ipath, '/', 1) !== false &&
701 strpos(
[all...]

123