Home
last modified time | relevance | path

Searched refs:substr (Results 101 – 125 of 138) sorted by last modified time

123456

/dokuwiki/vendor/simplepie/simplepie/
H A Dautoloader.php73 $relative_class = substr($class, $len);
/dokuwiki/vendor/simplepie/simplepie/src/Cache/
H A DMySQL.php108 $this->options['dbname'] = substr($this->options['path'], 1);
H A DRedis.php104 $redis->select((int)substr($parsed['path'], 1));
/dokuwiki/vendor/geshi/geshi/src/
H A Dgeshi.php1558 $this->set_language(self::get_language_name_from_extension(substr(strrchr($file_name, '.'), 1), $lookup));
2295 1 => substr($code, $i, $next_match_pos - $i)
2321 substr($code, $i, $next_match_pointer['open_strlen']) == $next_match_pointer['open'])) {
2342 $parts[$k][1] = substr($code, $next_match_pos);
2346 $parts[$k][1] = substr($code, $next_match_pos, $i - $next_match_pos);
2540 if ($testchar === substr($part, $i, strlen($testchar)) &&
2551 if ($testchar === substr($part, $i, strlen($testchar))) {
2652 $string .= $this->hsc(substr($part, $start, $es_pos - $start));
2675 $es_char_m = mb_substr(substr($part, $es_pos+1, 16), 0, 1, $this->encoding);
2703 $string .= $this->hsc(substr(
[all...]
/dokuwiki/vendor/simplepie/simplepie/src/
H A DIRI.php164 call_user_func([$this, 'set_' . substr($name, 1)], $value);
196 elseif (($prop = substr($name, 1)) && array_key_exists($prop, $props)) {
293 $target->ipath = substr($base->ipath, 0, $last_segment + 1) . $relative->ipath;
365 $input = substr($input, 3);
367 $input = substr($input, 2);
371 $input = substr($input, 2);
377 $input = substr($input, 3);
389 $output .= substr($input, 0, $pos);
692 if (!$isauthority && (substr($this->ipath, 0, 2) === '//')) {
824 $iuserinfo = substr(
[all...]
H A DItem.php885 } elseif (substr($key, 0, 41) === \SimplePie\SimplePie::IANA_LINK_RELATIONS_REGISTRY) {
886 $this->data['links'][substr($key, 41)] =& $this->data['links'][$key];
/dokuwiki/bin/
H A Dgittool.php258 $target = fullpath(tpl_incdir() . '../' . substr($ext, 9));
/dokuwiki/inc/
H A DSafeFN.class.php162 $unicode[] = 32 + (int)base_convert(substr($sub, 1), 36, 10);
H A Dload.php174 $plugin = substr($classPath, 0, strpos($classPath, '/'));
202 $template = substr($classPath, 0, strpos($classPath, '/'));
278 $string = substr($string, strlen($prefix));
H A Dmedia.php1729 $label = substr($item['id'], $pos > 0 ? $pos + 1 : 0);
1864 return substr(PassHash::hmac('md5', $token, auth_cookiesalt()), 0, 6);
2162 $filebase = substr($src, 0, -1 * (strlen($srcExt) + 1));
H A Dfulltext.php85 switch (substr($token, 0, 3)) {
89 $word = substr($token, 3);
96 $phrase = substr($token, 3);
124 $ns = cleanID(substr($token, 3)) . ':';
500 $utf8_idx = PhpString::strlen(substr($text, 0, $idx));
531 $snippets[count($snippets) - 1] .= PhpString::substr($text, $append, $end - $append);
533 $snippets[] = PhpString::substr($text, $start, $end - $start);
542 $offset = $idx + strlen(PhpString::substr($text, $utf8_idx, $utf8_len));
585 $term = substr($term, 2);
591 $term = substr(
[all...]
H A Dhttputils.php29 $last_modified = substr(gmdate('r', $timestamp), 0, -5) . 'GMT';
82 $file = DOKU_REL . substr($file, strlen(fullpath(DOKU_INC)) + 1);
H A Dindexer.php311 $i = substr($f, 1, -4);
/dokuwiki/vendor/splitbrain/php-cli/src/
H A DOptions.php250 $arg = explode('=', substr($arg, 2), 2);
276 $opt = substr($arg, 1);
/dokuwiki/inc/Ui/
H A DAdmin.php
/dokuwiki/vendor/geshi/geshi/
H A DCHANGELOG618 - Code cleanup by using direct string indexing instead of substr with length 1 (Milian Wolff)
/dokuwiki/inc/parser/
H A Dhandler.php193 $key = substr($match[0], 0, $equal_sign);
194 $value = substr($match[0], $equal_sign + 1);
876 [substr($link[0], 1), $link[1]],
1104 $src = substr($link[0], 0, $pos);
1105 $param = substr($link[0], $pos + 1);
/dokuwiki/lib/exe/
H A Dcss.php228 $msg = substr($msg, 0, -1 * strlen($m[0])); //remove useless linenumber
700 return substr($line, 0, $i);
/dokuwiki/vendor/openpsa/universalfeedcreator/lib/Creator/
H A DGPXCreator.php39 <name>".substr(htmlspecialchars(strip_tags($this->items[$i]->title)), 0, 6)."</name>
/dokuwiki/vendor/splitbrain/php-jsstrip/src/
H A DJSStrip.php77 if (substr($source, $idx, $endC + 2 - $idx) == '/* BEGIN NOCOMPRESS */') {
96 $result .= "\n" . trim(substr($source, $idx + 22, $endNC - ($idx + 22))) . "\n"; // BEGIN comment = 22 chars
124 return substr($source, $idx, $len) === $e;
141 $result .= substr($source, $idx, $j + 1);
157 $string = substr($source, $idx, $j + 1);
175 $string = substr($source, $idx, $j + 1);
193 $string = substr($source, $idx, $j + 1);
203 $lch = substr($result, -1);
248 $before = substr($this->source, max(0, $this->idx - 15), $this->idx);
249 $after = substr(
[all...]
/dokuwiki/inc/Ui/Media/
H A DDisplayRow.php78 if (PhpString::strlen($d) > 250) $d = PhpString::substr($d, 0, 250) . '...';
/dokuwiki/vendor/splitbrain/slika/src/
H A DGdAdapter.php331 if ($dim && substr($dim, -1) == '%') {
/dokuwiki/inc/Cache/
H A DCache.php210 $stats[substr($line, 0, $i)] = $line;
/dokuwiki/inc/ChangeLog/
H A DChangeLogTrait.php62 'sum' => PhpString::substr(str_replace($strip, '', $info['sum'] ?? ''), 0, 255),
/dokuwiki/inc/Debug/
H A DPropertyDeprecationHelper.php123 $classname = substr($obfuscatedProp, 1, -strlen($obfuscatedPropTail));

123456