Home
last modified time | relevance | path

Searched refs:sexplode (Results 1 – 24 of 24) sorted by relevance

/dokuwiki/inc/
H A DInfo.php44 [, $return['codename']] = sexplode(' ', $version, 2);
H A DStyleUtils.php140 [$extension, $basename] = array_map('strrev', sexplode('.', strrev($file), 2, ''));
H A DJWT.php47 [$header, $payload, $signature] = sexplode('.', $token, 3, '');
H A Dconfutils.php149 [$key, $val] = sexplode('=', $line, 2, '');
H A Dcommon.php56 function sexplode($separator, $string, $limit, $default = null) function
909 [$ip, $session] = sexplode("\n", io_readFile($lock), 2);
1189 [$from, $to] = sexplode('-', $range, 2);
H A Dauth.php215 [$type, $token] = sexplode(' ', $headers['authorization'], 2);
1431 [$user, $sticky, $pass] = sexplode('|', $_COOKIE[DOKU_COOKIE], 3, '');
/dokuwiki/inc/Remote/OpenApiDoc/
H A DDocBlockMethod.php77 [$type, $name, $description] = array_map('trim', sexplode(' ', $param, 3, ''));
106 [$type, $description] = array_map('trim', sexplode(' ', $return, 2, ''));
H A DDocBlockProperty.php46 [$type, $description] = array_map('trim', sexplode(' ', $this->tags['var'][0], 2, ''));
H A DDocBlock.php52 [$summary, $description] = sexplode("\n\n", $docblock, 2, '');
/dokuwiki/lib/plugins/extension/
H A DManager.php67 [$key, $value] = sexplode('=', $line, 2, '');
H A DExtension.php869 [$type, $base] = sexplode(':', $id, 2);
/dokuwiki/inc/File/
H A DPageResolver.php23 [$id, $hash] = sexplode('#', $id, 2);
/dokuwiki/inc/Extension/
H A DPluginTrait.php23 $parts = sexplode('_', $class, 3);
H A DPluginController.php381 return sexplode('_', $name, 2, '');
/dokuwiki/inc/parser/
H A Drenderer.php898 [$name, $hash] = sexplode('#', $name, 2);
976 [$id, $urlparam] = sexplode('?', $url, 2, '');
H A Dhandler.php661 $matches = sexplode('>', $match, 2, '');
832 $link = sexplode('|', $link, 2);
845 $interwiki = sexplode('>', $link[0], 2, '');
944 [$link, $params] = sexplode(' ', $link, 2, '');
H A Dxhtml.php922 [$id, $hash] = sexplode('#', $id, 2);
1197 [$src, $hash] = sexplode('#', $src, 2);
1281 [$shortcut, $reference] = sexplode('>', $src, 2, '');
1289 [$src, $hash] = sexplode('#', $src, 2);
H A Dmetadata.php489 [$page] = sexplode('#', $id, 2);
/dokuwiki/lib/plugins/logviewer/
H A Dadmin.php201 [$dt, $file, $msg] = sexplode("\t", $line, 3, '');
/dokuwiki/_test/core/
H A DTestRequest.php200 list($uri, $query) = sexplode('?', $uri, 2);
/dokuwiki/inc/ChangeLog/
H A DChangeLogTrait.php29 $info = sexplode("\t", rtrim($line, "\n"), 8);
/dokuwiki/lib/plugins/authad/
H A Dauth.php329 [$dom, $user] = sexplode('\\', $user, 2, '');
332 [$user, $dom] = sexplode('@', $user, 2, '');
666 [, $domain] = sexplode('@', $user, 2, '');
/dokuwiki/inc/Parsing/Lexer/
H A DLexer.php268 [$handler, $plugin] = sexplode('_', $handler, 2, '');
/dokuwiki/inc/HTTP/
H A DHTTPClient.php338 [$cookie] = sexplode(';', $cookie, 2, '');
339 [$key, $val] = sexplode('=', $cookie, 2, '');
781 [$key, $val] = sexplode(':', $line, 2, '');