Home
last modified time | relevance | path

Searched refs:substr_replace (Results 1 – 16 of 16) sorted by path

/dokuwiki/inc/Utf8/
H A DPhpString.php168 * Unicode aware replacement for substr_replace()
177 * @see substr_replace()
181 public static function substr_replace($string, $replacement, $start, $length = 0)
336 $ucword = self::substr_replace(ltrim($matches[0]), $ucfirst, 0, 1);
190 public static function substr_replace($string, $replacement, $start, $length = 0) global() function in dokuwiki\\Utf8\\PhpString
/dokuwiki/inc/
H A Dutf8.php111 dbg_deprecated(PhpString::class . '::substr_replace()');
112 return PhpString::substr_replace($string, $replacement, $start, $length);
/dokuwiki/lib/plugins/authad/adLDAP/classes/
H A DadLDAPGroups.php589 $gsid = substr_replace($usersid, pack('V',$gid), strlen($usersid)-4,4);
/dokuwiki/lib/scripts/
H A Dhelpers.js6 * A PHP-style substr_replace
12 function substr_replace(str, replace, start, length) { function
H A Dqsearch.js162 this.textContent = substr_replace(this.textContent,
/dokuwiki/vendor/geshi/geshi/
H A DCHANGELOG497 * Use more native functions like substr_replace and strcasecmp to speed things up (milian)
/dokuwiki/vendor/geshi/geshi/src/
H A Dgeshi.php3605 $stuff_to_parse = substr_replace($stuff_to_parse, $symbol_hl, $symbol_offset + $global_offset, $symbol_length);
/dokuwiki/vendor/kissifrot/php-ixr/src/Message/
H A 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/phpseclib/phpseclib/phpseclib/Crypt/
H A DBase.php
H A DTripleDES.php
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/File/
H A DANSI.php367 $this->screen[$this->y] = substr_replace(
389 $this->screen[$this->y] = substr_replace(
/dokuwiki/vendor/simplepie/simplepie/library/SimplePie/Decode/HTML/
H A DEntities.php207 $this->data = substr_replace($this->data, $replacement, $this->position - $consumed_length, $consumed_length);
590 $this->data = substr_replace($this->data, $entities[$match], $this->position - strlen($consumed) - 1, strlen($match) + 1);
/dokuwiki/vendor/simplepie/simplepie/src/
H A DIRI.php378 $output = substr_replace($output, '', intval(strrpos($output, '/')));
381 $output = substr_replace($output, '', intval(strrpos($output, '/')));
390 $input = substr_replace($input, '', 0, $pos);
512 $string = substr_replace($string, sprintf('%%%02X', ord($string[$j])), $j, 1);
1018 $string = substr_replace($string, sprintf('%%%02X', ord($string[$position])), $position, 1);
H A DMisc.php198 return substr_replace($url, 'podcast', 0, 4);
200 return substr_replace($url, 'itpc', 0, 4);
1717 $data = substr_replace($data, '', 0, $end + 3);
/dokuwiki/vendor/simplepie/simplepie/src/Net/
H A DIPv6.php157 $ip_parts[0] = substr_replace($ip_parts[0], '::', $pos, $max);
/dokuwiki/vendor/splitbrain/php-archive/src/
H A DZip.php814 $this->memory .= substr_replace($this->memory, $data, $offset);