Home
last modified time | relevance | path

Searched refs:char (Results 1 – 9 of 9) sorted by relevance

/dokuwiki/vendor/php81_bc/strftime/src/
H A Dphp-8.1-strftime.php132 $char = $match[2];
133 $pattern = '%'.$char;
/dokuwiki/conf/
H A Dacl.auth.php.dist10 # If your auth backend allows special char like spaces in groups
/dokuwiki/vendor/geshi/geshi/src/
H A Dgeshi.php2490 $char = $part[$i];
2532 if (isset($is_string_starter[$char])) {
2537 if (is_array($is_string_starter[$char])) {
2539 foreach ($is_string_starter[$char] as $testchar) {
2547 $char = $char_new;
2550 $testchar = $is_string_starter[$char];
2552 $char = $testchar;
2556 $char_len = strlen($char);
2561 $string_key = array_search($char, $this->language_data['QUOTEMARKS']);
2578 $string = "<span$string_attributes>" . GeSHi::hsc($char);
[all …]
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/File/
H A DANSI.php440 * @param string $char
443 private function processCoordinate(\stdClass $last_attr, \stdClass $cur_attr, $char) argument
489 $output .= htmlspecialchars($char);
/dokuwiki/inc/
H A Dcommon.php1524 * @param string $char backslashed character
1529 function unslash($string, $char = "'") argument
1531 return str_replace('\\' . $char, $char, $string);
1579 * @param string $char the shortening character to use
1582 function shorten($keep, $short, $max, $min = 9, $char = '…') argument
1591 $char .
H A DPassHash.php336 foreach ($charArr as $char) {
337 if (in_array($char, ['', ' ', '\t'], true)) continue;
338 $charVal = ord($char);
/dokuwiki/vendor/splitbrain/lesserphp/src/
H A DParser.php809 $char = $this->buffer[$this->count];
810 if (!ctype_digit($char) && $char != '.') return false;
/dokuwiki/vendor/geshi/geshi/
H A DCHANGELOG153 * Symbol and char literal handling for Scala (Paul Butcher, BenBE)
361 * Fixed escape char regexp for C-style languages (BenBE)
376 - Fixed a problem where HardEscapes weren't working when no escape char was given (BenBE)
533 …* Fixed escape char support when an escape char is followed by multi-byte chars (SF#2037598, BenBE)
544 expressions used as delimiters inside keywords instead of a simple char group (BenBE)
/dokuwiki/_test/core/
H A DphpQuery-onefile.php1404 * @param string $char
1409 protected function isChar($char) { argument
1411 ? mb_eregi('\w', $char)
1412 : preg_match('@\w@', $char);