Home
last modified time | relevance | path

Searched refs:strlen (Results 1 – 25 of 101) sorted by last modified time

12345

/dokuwiki/inc/
H A Dpageutils.php465 $name = substr($id, 0, -1 * strlen($ext[0]) - 1);
H A Dtemplate.php1764 if ($abs) $url = DOKU_URL . substr($url, strlen(DOKU_REL));
H A Dutf8.php93 dbg_deprecated(PhpString::class . '::strlen()');
94 return PhpString::strlen($str);
H A Dio.php501 if (strlen($ns) == 0) {
827 $uncompressedsize += strlen($buffer);
H A DMailer.class.php578 if (PhpString::strlen($conf['title']) < 20) {
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DDES.php623 if (!($this instanceof TripleDES) && strlen($key) != 8) {
624 throw new \LengthException('Key of size ' . strlen($key) . ' not supported by this algorithm. Only keys of size 8 are supported');
H A DRSA.php523 if (strlen($x) > $xLen) {
587 $tLen = strlen($t);
646 $tLen = strlen($t);
H A DRandom.php182 while (strlen($result) < $length) {
183 $i = $crypto->encrypt(microtime()); // strlen(microtime()) == 21
184 $r = $crypto->encrypt($i ^ $v); // strlen($v) == 20
185 $v = $crypto->encrypt($r ^ $i); // strlen($r) == 20
H A DTwofish.php419 switch (strlen($key)) {
425 throw new \LengthException('Key of size ' . strlen($key) . ' not supported by this algorithm. Only keys of sizes 16, 24 or 32 supported');
456 switch (strlen($this->key)) {
/dokuwiki/inc/Parsing/Lexer/
H A DLexer.php139 $initialLength = strlen($raw);
144 $currentLength = strlen($raw);
145 $matchPos = $initialLength - $currentLength - strlen($matched);
/dokuwiki/inc/Parsing/ParserMode/
H A DAcronym.php37 if (strlen($this->pattern) > 0) {
58 $a_len = strlen($a);
59 $b_len = strlen($b);
H A DEntity.php39 if (strlen($this->pattern) > 0) {
H A DSmiley.php38 if (strlen($this->pattern) > 0) {
H A DWordblock.php42 if (strlen($this->pattern) > 0) {
/dokuwiki/vendor/simplepie/simplepie/idn/
H A Didna_convert.class.php375 if ($delim_pos > strlen($this->_punycode_prefix)) {
376 for ($k = strlen($this->_punycode_prefix); $k < $delim_pos; ++$k) {
383 $enco_len = strlen($encoded);
422 $extract = strlen($this->_punycode_prefix);
792 $inp_len = strlen($input);
921 $inp_len = strlen($input);
/dokuwiki/vendor/simplepie/simplepie/src/Content/Type/
H A DSniffer.php208 $len = strlen($this->file->body);
/dokuwiki/vendor/simplepie/simplepie/src/
H A DGzdecode.php196 $this->compressed_size = strlen($data);
335 if (sprintf('%u', strlen($this->data) & 0xFFFFFFFF) !== sprintf('%u', $isize)) {
H A DMisc.php112 if (strlen($matches[$i][3][0]) <= 2) {
1756 $length = strlen($string);
1885 $string_length = strlen($string);
H A DParser.php355 $separator_length = strlen($this->separator);
/dokuwiki/vendor/simplepie/simplepie/src/HTTP/
H A DParser.php134 * Input data length (to avoid calling strlen() everytime this is needed)
169 $this->data_length = strlen($this->data);
470 $chunk_length = strlen($matches[0]);
/dokuwiki/vendor/simplepie/simplepie/library/SimplePie/Decode/HTML/
H A DEntities.php206 $consumed_length = strlen($this->consumed);
208 $this->position += strlen($replacement) - $consumed_length;
590 $this->data = substr_replace($this->data, $entities[$match], $this->position - strlen($consumed) - 1, strlen($match) + 1);
591 $this->position += strlen($entities[$match]) - strlen($consumed) - 1;
/dokuwiki/vendor/simplepie/simplepie/src/Net/
H A DIPv6.php151 if (strlen($match[0]) > $max) {
152 $max = strlen($match[0]);
213 if (strlen($ipv6_part) > 4) {
/dokuwiki/vendor/simplepie/simplepie/src/Parse/
H A DDate.php730 $second_fraction = isset($match['second_fraction']) ? ((int) $match['second_fraction']) / (10 ** strlen($match['second_fraction'])) : 0;
760 $length = strlen($string);
/dokuwiki/vendor/kissifrot/php-ixr/src/Message/
H A DMessage.php74 if (strlen($this->message) <= $chunk_size) {
/dokuwiki/vendor/splitbrain/php-archive/src/
H A DFileInfo.php313 $striplen = strlen($strip);

12345