auswertung
bootstrap
classes
config
controller
dashboard
datepicker
jquery
js
language
lib
old
smarty
smarty2
smarty_3
demo
libs
plugins
block.textformat.php
function.counter.php
function.cycle.php
function.fetch.php
function.html_checkboxes.php
function.html_image.php
function.html_options.php
function.html_radios.php
function.html_select_date.php
function.html_select_time.php
function.html_table.php
function.mailto.php
function.math.php
modifier.capitalize.php
modifier.date_format.php
modifier.debug_print_var.php
modifier.escape.php
modifier.regex_replace.php
modifier.replace.php
modifier.spacify.php
modifier.truncate.php
modifiercompiler.cat.php
modifiercompiler.count_characters.php
modifiercompiler.count_paragraphs.php
modifiercompiler.count_sentences.php
modifiercompiler.count_words.php
modifiercompiler.default.php
modifiercompiler.escape.php
modifiercompiler.from_charset.php
modifiercompiler.indent.php
modifiercompiler.lower.php
modifiercompiler.noprint.php
modifiercompiler.string_format.php
modifiercompiler.strip.php
modifiercompiler.strip_tags.php
modifiercompiler.to_charset.php
modifiercompiler.unescape.php
modifiercompiler.upper.php
modifiercompiler.wordwrap.php
outputfilter.trimwhitespace.php
shared.escape_special_chars.php
shared.literal_compiler_param.php
shared.make_timestamp.php
shared.mb_str_replace.php
shared.mb_unicode.php
shared.mb_wordwrap.php
variablefilter.htmlspecialchars.php
sysplugins
Smarty.class.php
SmartyBC.class.php
debug.tpl
COPYING.lib
README
SMARTY_2_BC_NOTES.txt
SMARTY_3.0_BC_NOTES.txt
SMARTY_3.1_NOTES.txt
change_log.txt
Smarty-2.6.28.zip
smarty-3.1.29.zip
media
selfregistration
sql
survey
templates
test
tinymce
.gitignore
config.inc.php
todo.txt
56 lines
1.8 KiB
PHP
56 lines
1.8 KiB
PHP
<?php
|
|
/**
|
|
* Smarty shared plugin
|
|
*
|
|
* @package Smarty
|
|
* @subpackage PluginsShared
|
|
*/
|
|
if (!function_exists('smarty_mb_str_replace')) {
|
|
|
|
/**
|
|
* Multibyte string replace
|
|
*
|
|
* @param string $search the string to be searched
|
|
* @param string $replace the replacement string
|
|
* @param string $subject the source string
|
|
* @param int &$count number of matches found
|
|
*
|
|
* @return string replaced string
|
|
* @author Rodney Rehm
|
|
*/
|
|
function smarty_mb_str_replace($search, $replace, $subject, &$count = 0)
|
|
{
|
|
if (!is_array($search) && is_array($replace)) {
|
|
return false;
|
|
}
|
|
if (is_array($subject)) {
|
|
// call mb_replace for each single string in $subject
|
|
foreach ($subject as &$string) {
|
|
$string = & smarty_mb_str_replace($search, $replace, $string, $c);
|
|
$count += $c;
|
|
}
|
|
} elseif (is_array($search)) {
|
|
if (!is_array($replace)) {
|
|
foreach ($search as &$string) {
|
|
$subject = smarty_mb_str_replace($string, $replace, $subject, $c);
|
|
$count += $c;
|
|
}
|
|
} else {
|
|
$n = max(count($search), count($replace));
|
|
while ($n --) {
|
|
$subject = smarty_mb_str_replace(current($search), current($replace), $subject, $c);
|
|
$count += $c;
|
|
next($search);
|
|
next($replace);
|
|
}
|
|
}
|
|
} else {
|
|
$parts = mb_split(preg_quote($search), $subject);
|
|
$count = count($parts) - 1;
|
|
$subject = implode($replace, $parts);
|
|
}
|
|
|
|
return $subject;
|
|
}
|
|
}
|