Home
last modified time | relevance | path

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

123

/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Math/
H A DBigInteger.php
/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/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/simplepie/simplepie/idn/
H A Didna_convert.class.php184 if (strpos($input, '@')) { // Maybe it is an email address
/dokuwiki/vendor/simplepie/simplepie/library/SimplePie/Decode/HTML/
H A DEntities.php100 while (($this->position = strpos($this->data, '&', $this->position)) !== false) {
/dokuwiki/vendor/simplepie/simplepie/src/Content/Type/
H A DSniffer.php97 if (($pos = strpos($this->file->headers['content-type'], ';')) !== false) {
230 if ($pos < $len && ($pos = strpos($this->file->body, '-->', $pos)) !== false) {
236 if ($pos < $len && ($pos = strpos($this->file->body, '>', $pos)) !== false) {
242 if ($pos < $len && ($pos = strpos($this->file->body, '?>', $pos)) !== false) {
/dokuwiki/vendor/simplepie/simplepie/src/HTTP/
H A DParser.php225 if (strpos($this->data, "\x0A") !== false && strtoupper(substr($this->data, 0, 5)) === 'HTTP/') {
/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...]
H A DMisc.php1714 while (($start = strpos($data, '<!--')) !== false) {
1716 if (($end = strpos($data, '-->', $start)) !== false) {
1761 while ($position < $length && ($pos = strpos($string, '(', $position)) !== false) {
1797 if (($pos = strpos($mime, ';')) === false) {
1942 if (strpos($section, '=') !== false) {
1985 if ($pos = strpos($data, "\x00\x00\x00\x3F\x00\x00\x00\x3E")) {
1995 if ($pos = strpos($data, "\x3F\x00\x00\x00\x3E\x00\x00\x00")) {
2005 if ($pos = strpos($data, "\x00\x3F\x00\x3E")) {
2015 if ($pos = strpos($data, "\x3F\x00\x3E\x00")) {
2025 if ($pos = strpos(
[all...]
H A DParser.php128 if (substr($data, 0, 5) === '<?xml' && strspn(substr($data, 5, 1), "\x09\x0A\x0D\x20") && ($pos = strpos($data, '?>')) !== false) {
352 if ($pos = strpos($string, $this->separator)) {
486 } elseif (strpos($author, 'http') === 0) {
521 if (!empty($photo) && strpos($content, $photo) === false) {
607 } elseif ($position = strpos($data, '<title>')) {
/dokuwiki/vendor/simplepie/simplepie/src/Net/
H A DIPv6.php97 if (strpos($ip2, '.') !== false) {
181 if (strpos($ip, '.') !== false) {
/dokuwiki/vendor/simplepie/simplepie/src/Parse/
H A DDate.php765 while ($position < $length && ($pos = strpos($string, '(', $position)) !== false) {
/dokuwiki/vendor/splitbrain/php-archive/src/
H A DTar.php701 if(strpos($magic, "\x42\x5a") === 0) return Archive::COMPRESS_BZIP;
702 if(strpos($magic, "\x1f\x8b") === 0) return Archive::COMPRESS_GZIP;
/dokuwiki/vendor/splitbrain/php-jsstrip/src/
H A DJSStrip.php65 while ($idx < $slen && (strpos(self::CHARS, $source[$idx]) === false)) {
73 $endC = strpos($source, '*/', $idx + 2);
82 $beginNC = strpos($source, '/* BEGIN NOCOMPRESS */', $nextNC + 2);
83 $endNC = strpos($source, '/* END NOCOMPRESS */', $nextNC + 2);
106 $endC = strpos($source, "\n", $idx + 2);
210 || strpos(self::OPS, $source[$idx + 1]) === false)) {
212 if ($idx + 1 < $slen && (strpos(self::CHARS, $source[$idx + 1]) !== false)) {
219 if ($lch && (strpos(self::CHARS, $lch) !== false)) {

123