Home
last modified time | relevance | path

Searched refs:strlen (Results 1 – 25 of 101) sorted by path

12345

/dokuwiki/bin/
H A Dwantedpages.php134 $trunclen = strlen($conf['datadir'] . ':');
/dokuwiki/inc/ChangeLog/
H A DChangeLog.php264 $got += strlen($tmp);
H A DChangeLogTrait.php195 $got += strlen($tmp);
/dokuwiki/inc/Debug/
H A DPropertyDeprecationHelper.php123 $classname = substr($obfuscatedProp, 1, -strlen($obfuscatedPropTail));
/dokuwiki/inc/File/
H A DPageFile.php114 'sizechange' => strlen($text) - strlen($currentContent),
/dokuwiki/inc/HTTP/
H A DHTTPClient.php234 $contentlength = strlen($data);
408 if (strlen($chunk_size) > 128) // set an abritrary limit on the size of chunks
414 if ($this->max_bodysize && $chunk_size + strlen($r_body) > $this->max_bodysize) {
418 $chunk_size = $this->max_bodysize - strlen($r_body);
462 if (strlen($r_body) > $this->max_bodysize) {
492 strlen($r_body) > 10 && str_starts_with($r_body, "\x1f\x8b\x08")
586 $towrite = strlen($data);
642 strlen($r_data),
668 $to_read -= strlen($bytes);
670 } while ($to_read > 0 && strlen(
[all...]
/dokuwiki/inc/
H A DJpegMeta.php431 if(strlen($field) >= 8 && str_starts_with(strtolower($field), 'datetime')) {
432 if(strlen($value) < 8 || $value[4] != ':' || $value[7] != ':') {
1224 $this->_writeJPEGMarker(0xE1, strlen($exif), $exif, 0);
1234 $this->_writeJPEGMarker(0xED, strlen($adobe), $adobe, 0);
1242 $length = strlen($data);
1300 fputs($this->_fpout, $data, strlen($data));
2042 if (strlen($entries[$i]['value']) > 4) {
2111 $value = strlen($this->_info['exif']['TIFFStrips']);
2124 $value = strlen($this->_info['exif']['JFIFThumbnail']);
2171 if (($count != 0) && (strlen(
[all...]
H A DMailer.class.php578 if (PhpString::strlen($conf['title']) < 20) {
H A DPassHash.php45 $len = strlen($hash);
158 if (strlen($salt) > $len && $cut) $salt = substr($salt, 0, $len);
228 $len = strlen($clear);
430 $count = strlen($hash);
827 $pack = 'H' . strlen($algo('test'));
832 if (strlen($key) > $size) {
838 for ($i = 0; $i < strlen($key) - 1; $i++) {
H A DSafeFN.class.php148 $len = strlen($sub);
H A DTaskRunner.php80 header('Content-Length: ' . strlen($img));
/dokuwiki/inc/Parsing/Handler/
H A DQuote.php83 $quoteLength = strlen($matches[0]);
/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/inc/Remote/
H A DApiCore.php
/dokuwiki/inc/Search/
H A DIndexer.php535 (!is_numeric($word) && strlen($word) < IDX_MINWORDLENGTH)
897 if ($cnt >= $min && (!$max || $cnt <= $max) && strlen($val) >= $minlen)
912 if (strlen($words[$wid]) >= $minlen)
/dokuwiki/inc/Ui/Media/
H A DDisplay.php119 $id = substr($id, strlen($this->relativeDisplay));
H A DDisplayRow.php78 if (PhpString::strlen($d) > 250) $d = PhpString::substr($d, 0, 250) . '...';
/dokuwiki/inc/Ui/
H A DSearch.php352 $baseNSLength = strlen($baseNS);
361 $firstColon = strpos((string)$namespace, ':', $baseNSLength + 1) ?: strlen($namespace);
/dokuwiki/inc/Utf8/
H A DClean.php34 $len = strlen($str);
66 $len = strlen($str);
133 $str = substr($str, strlen($matches[0]));
192 $limit = strlen($str);
H A DPhpString.php30 $suflen = strlen($suffix);
39 * Unicode aware replacement for strlen()
49 * @see strlen()
51 public static function strlen($string)
63 return strlen(utf8_decode($string));
66 return strlen($string);
120 $strlen = self::strlen($str); // see notes
121 $offset = $strlen + $offset;
140 if (!isset($strlen))
52 public static function strlen($string) global() function in dokuwiki\\Utf8\\PhpString
[all...]
H A DUnicode.php44 $len = strlen($str);

12345