Home
last modified time | relevance | path

Searched refs:substr_replace (Results 1 – 18 of 18) sorted by relevance

/dokuwiki/vendor/simplepie/simplepie/library/SimplePie/Decode/HTML/
DEntities.php206 …$this->data = substr_replace($this->data, $replacement, $this->position - $consumed_length, $consu…
589 …$this->data = substr_replace($this->data, $entities[$match], $this->position - strlen($consumed) -…
/dokuwiki/lib/scripts/
Dhelpers.js12 function substr_replace(str, replace, start, length) { function
Dqsearch.js162 this.textContent = substr_replace(this.textContent,
/dokuwiki/inc/Utf8/
DPhpString.php177 * @see substr_replace()
181 public static function substr_replace($string, $replacement, $start, $length = 0) function in dokuwiki\\Utf8\\PhpString
336 $ucword = self::substr_replace(ltrim($matches[0]), $ucfirst, 0, 1);
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Common/Functions/
DStrings.php384 $var = substr_replace($var, "\x00\x00\x00\x00", -$i, 4);
387 $var = substr_replace($var, "\x80\x00\x00\x00", -$i, 4);
391 $var = substr_replace($var, pack('N', $temp['num'] + 1), -$i, 4);
404 $var = substr_replace($var, $temp, 0, $remainder);
/dokuwiki/vendor/kissifrot/php-ixr/src/Message/
DMessage.php37 $this->message = trim(substr_replace($this->message, $header, 0, 100));
44 $this->message = trim(substr_replace($this->message, $header, 0, 200));
/dokuwiki/vendor/simplepie/simplepie/src/Net/
DIPv6.php156 $ip_parts[0] = substr_replace($ip_parts[0], '::', $pos, $max);
/dokuwiki/vendor/simplepie/simplepie/src/
DIRI.php377 $output = substr_replace($output, '', intval(strrpos($output, '/')));
380 $output = substr_replace($output, '', intval(strrpos($output, '/')));
389 $input = substr_replace($input, '', 0, $pos);
511 $string = substr_replace($string, sprintf('%%%02X', ord($string[$j])), $j, 1);
1017 … $string = substr_replace($string, sprintf('%%%02X', ord($string[$position])), $position, 1);
DMisc.php197 return substr_replace($url, 'podcast', 0, 4);
199 return substr_replace($url, 'itpc', 0, 4);
1716 $data = substr_replace($data, '', 0, $end + 3);
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Math/
DBinaryField.php101 $c = $j ? substr_replace($c, $temp, 0, $length) : $temp;
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/
DSymmetricKey.php1223 $iv = substr_replace($iv, $ciphertext, $orig_pos, $i);
1235 $iv = substr_replace($iv, $block, 0, $overflow);
1305 $iv = substr_replace($iv, $ciphertext, $orig_pos, $i);
1330 $iv = substr_replace($iv, $block, 0, $len);
1430 $iv = substr_replace($iv, $ciphertext, $orig_pos, $i);
1441 $iv = substr_replace($iv, $block, 0, $len);
1614 $iv = substr_replace($iv, substr($ciphertext, 0, $i), $orig_pos, $i);
1625 $iv = substr_replace($iv, substr($ciphertext, -$overflow), 0, $overflow);
1693 $iv = substr_replace($iv, substr($ciphertext, 0, $i), $orig_pos, $i);
1704 $iv = substr_replace($iv, substr($ciphertext, -$len), 0, $len);
[all …]
/dokuwiki/inc/
Dutf8.php112 return PhpString::substr_replace($string, $replacement, $start, $length);
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/File/
DANSI.php367 $this->screen[$this->y] = substr_replace(
389 $this->screen[$this->y] = substr_replace(
/dokuwiki/lib/plugins/authad/adLDAP/classes/
DadLDAPGroups.php589 $gsid = substr_replace($usersid, pack('V',$gid), strlen($usersid)-4,4);
/dokuwiki/vendor/splitbrain/php-archive/src/
DZip.php814 $this->memory .= substr_replace($this->memory, $data, $offset);
/dokuwiki/vendor/geshi/geshi/src/
Dgeshi.php3605 …$stuff_to_parse = substr_replace($stuff_to_parse, $symbol_hl, $symbol_offset + $global_offset, $sy…
/dokuwiki/_test/core/
DphpQuery-onefile.php798 $xml = substr_replace($xml, "></$tag>", $posCierre-1, 2);
/dokuwiki/vendor/geshi/geshi/
DCHANGELOG499 * Use more native functions like substr_replace and strcasecmp to speed things up (milian)