Home
last modified time | relevance | path

Searched refs:explode (Results 1 – 25 of 80) sorted by relevance

1234

/dokuwiki/inc/Subscriptions/
H A DPageSubscriptionSender.php44 explode("\n", $old_content),
45 explode("\n", $new_content)
52 explode("\n", $old_content),
53 explode("\n", $new_content)
H A DSubscriptionSender.php32 $listid = implode('.', array_reverse(explode('/', DOKU_BASE))) . $server;
/dokuwiki/inc/
H A Dfarm.php73 $uri = explode('/', $_SERVER['SCRIPT_NAME'] ?: $_SERVER['SCRIPT_FILENAME']);
74 $server = explode('.', implode('.', array_reverse(explode(':', rtrim($_SERVER['HTTP_HOST'], '.')))));
H A Dhttputils.php113 $t = explode('=', $INPUT->server->str('HTTP_RANGE'));
120 $r = explode(',', $t[1]);
122 $p = explode('-', $x);
H A Dinfoutils.php68 $msgs = explode("\n%\n", $data);
96 [$version['sha'], $date] = explode(' ', $commitInfo);
129 $committerLine = explode("\n", $commit)[3];
130 $committerData = explode(' ', $committerLine);
H A DActionRouter.php45 $this->disabled = explode(',', $conf['disableactions']);
184 $parts = explode('_', $actionname);
H A DLogger.php35 $dontlog = explode(',', $conf['dontlog']);
183 $details = explode("\n", $details);
/dokuwiki/vendor/openpsa/universalfeedcreator/lib/Creator/
H A DJSCreator.php21 $feedArray = explode("\n", $feed);
/dokuwiki/inc/HTTP/
H A DHeaders.php21 if (!is_array($values)) $values = explode("\n", $values);
/dokuwiki/vendor/simplepie/simplepie/src/Net/
H A DIPv6.php86 [$ip1, $ip2] = explode('::', $ip);
203 $ipv6 = explode(':', $ipv6);
204 $ipv4 = explode('.', $ipv4);
/dokuwiki/inc/Action/
H A DSearch.php95 $nsParts = explode(':', getNS($ID));
105 $queryParts = explode(' ', $QUERY);
/dokuwiki/lib/plugins/usermanager/
H A Dcli.php156 $grps = array_filter(array_map('trim', explode(',', $grps)));
201 $users = explode(',', $args[0]);
227 $newgrps = array_filter(array_map('trim', explode(',', $newgrps)));
265 $grps = array_filter(array_map('trim', explode(',', $grps)));
/dokuwiki/vendor/aziraphale/email-address-validator/
H A DEmailAddressValidator.php95 $localPortionParts = explode('.', $localPortion);
147 $domainPortionParts = explode('.', $domainPortion);
/dokuwiki/vendor/simplepie/simplepie/src/
H A DCache.php94 $type = explode(':', $location, 2);
H A DSanitize.php190 $this->strip_htmltags = explode(',', $tags);
208 $this->rename_attributes = explode(',', $attribs);
221 $this->strip_attributes = explode(',', $attribs);
234 $this->add_attributes = explode(',', $attribs);
299 $segments = array_reverse(explode('.', $domain));
320 $segments = array_reverse(explode('.', $domain));
/dokuwiki/lib/plugins/acl/
H A Daction.php73 $lvl = count(explode(':', $ns));
/dokuwiki/inc/Cache/
H A DCache.php206 $lines = explode("\n", io_readFile($file));
215 [$ext, $count, $hits] = explode(',', $stats[$this->ext]);
/dokuwiki/lib/plugins/config/core/Setting/
H A DSettingEmail.php36 $mails = array_filter(array_map('trim', explode(',', $mail)));
/dokuwiki/inc/Search/
H A DIndexer.php73 $oldwords = explode(':', $pageword_idx);
78 [$wlen, $wid] = explode('*', $word);
209 $val_idx = explode(':', $val_idx);
338 $parts = explode(':', $indexline);
340 [$id, $count] = explode('*', $part);
343 $keyline = explode(':', $pagekeys[$id]);
413 $delwords = explode(':', $pageword_idx);
417 [$wlen, $wid] = explode('*', $word);
438 $val_idx = explode(':', $this->getIndexKey($metaname . '_p', '', $pid));
527 $wordlist = explode(' ',
[all...]
/dokuwiki/vendor/splitbrain/php-cli/src/
H A DTableFormatter.php197 $wrapped[$col] = explode("\n", $this->wordwrap($texts[$col], $width, "\n", true));
295 $lines = explode($break, $str);
301 $words = explode(' ', $line);
/dokuwiki/inc/File/
H A DResolver.php88 $parts = explode(':', $id);
/dokuwiki/lib/plugins/config/core/
H A DConfigParser.php55 $arr = explode(',', $match[1]);
/dokuwiki/inc/Extension/
H A DRemotePlugin.php
/dokuwiki/inc/Form/
H A DElement.php116 $classes = explode(' ', $this->attr('class'));
/dokuwiki/lib/scripts/
H A Dhotkeys.js189 t.each(t.explode(pa, '+'), function(v) {
254 this.explode = function(s, d) { method in Hotkeys

1234