Home
last modified time | relevance | path

Searched refs:explode (Results 26 – 50 of 80) sorted by relevance

1234

/dokuwiki/lib/plugins/config/core/Setting/
H A DSettingMulticheckbox.php114 $array = explode(',', $str);
144 $other = empty($other) ? [] : explode(',', str_replace(' ', '', $input['other']));
H A DSettingArray.php18 $array = explode(',', $string);
/dokuwiki/bin/
H A Dstriplangs.php54 $keep = explode(',', $options->getOpt('keep'));
H A Dwantedpages.php173 [$mid] = explode('#', $mid); //record pages without hashes
/dokuwiki/inc/Extension/
H A DPluginTrait.php85 [$t] = explode('_', get_class($this), 2);
/dokuwiki/vendor/splitbrain/php-archive/src/
H A DFileInfo.php284 $path = explode('/', $path);
316 $parts = explode('/', $filename);
/dokuwiki/inc/ChangeLog/
H A DChangeLogTrait.php198 $lines = explode("\n", $chunk);
/dokuwiki/inc/parser/
H A Dmetadata.php477 $parts = explode('?', $id, 2);
541 [$wikiUri] = explode('#', $wikiUri, 2);
740 [$src] = explode('#', $src, 2);
758 [$src] = explode('#', $src, 2);
/dokuwiki/vendor/simplepie/simplepie/src/HTTP/
H A DParser.php495 $data = explode("\r\n\r\n", $headers, $count);
498 $exploded = explode("\r\n\r\n", $data, 2);
502 $exploded = explode("\r\n\r\n", $data, 2);
/dokuwiki/
H A Dfeed.php
/dokuwiki/inc/
H A Dcommon.php38 * A safer explode for fixed length lists
40 * This works just like explode(), but will always return the wanted number of elements.
49 * @see explode
54 return array_pad(explode($separator, $string, $limit), $limit, $default);
801 $ip = array_merge($ip, explode(',', str_replace(' ', '', $INPUT->server->str('HTTP_X_FORWARDED_FOR'))));
804 $ip = array_merge($ip, explode(',', str_replace(' ', '', $INPUT->server->str('HTTP_X_REAL_IP'))));
900 $ips = explode(',', $ips);
988 @[$ip, $session] = explode("\n", io_readFile($lock));
1928 $parts = explode('#', $_COOKIE['DOKU_PREFS']);
1957 $parts = explode('#',
[all...]
H A DAjax.php199 $lvl = count(explode(':', $ns));
332 $lvl = count(explode(':', $ns));
H A Dfulltext.php416 $ac = count(explode(':', $a));
417 $bc = count(explode(':', $b));
767 $tokens = explode(' ', $term);
H A Dpageutils.php287 $id = (explode('#', $id, 2))[0]; // #3608
528 $pathA = explode(':', $id);
H A Dconfutils.php369 $disabled = explode(',', $conf['disableactions']);
/dokuwiki/lib/plugins/authad/
H A Dauth.php91 $this->conf['additional'] = explode(',', $this->conf['additional']);
604 $parts = explode(' ', $changes['name']);
681 [$user] = explode('@', $user, 2);
705 $opts['domain_controllers'] = explode(',', $opts['domain_controllers']);
/dokuwiki/vendor/simplepie/simplepie/idn/
H A Didna_convert.class.php190 list ($email_pref, $input) = explode('@', $input, 2);
191 $arr = explode('.', $input);
199 $arr = explode('.', $email_pref);
216 $arr = explode('.', $parsed['host']);
231 $arr = explode('.', $input);
/dokuwiki/lib/plugins/logviewer/
H A Dadmin.php158 $lines = explode("\n", $logData);
/dokuwiki/lib/plugins/authad/adLDAP/classes/
H A DadLDAPUtils.php74 $bits=explode(",", $line);
/dokuwiki/vendor/simplepie/simplepie/src/
H A DEnclosure.php886 $options = explode(',', $options);
888 $opt = explode(':', $option, 2);
937 $mime = explode('/', $type, 2);
/dokuwiki/lib/plugins/acl/
H A Dadmin.php309 $a_ids = explode(':', $a['id']);
310 $b_ids = explode(':', $b['id']);
595 explode(',', $conf['manager'])
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/
H A DSSH2.php2370 $this->supported_private_key_algorithms = explode(',', $extension_value);
5146 $subkeys = explode('/', $key);
/dokuwiki/inc/Remote/
H A DApi.php
/dokuwiki/inc/Ui/
H A DPageDiff.php211 explode("\n", $this->RevInfo1->val('text')),
212 explode("\n", $this->RevInfo2->val('text'))
/dokuwiki/lib/plugins/info/
H A Dsyntax.php138 [$name, /* part */] = explode('_', $p, 2);

1234