]> git.mxchange.org Git - friendica.git/blob - vendor/smarty/smarty/libs/plugins/modifier.replace.php
Add Smarty to Composer
[friendica.git] / vendor / smarty / smarty / libs / plugins / modifier.replace.php
1 <?php
2 /**
3  * Smarty plugin
4  *
5  * @package    Smarty
6  * @subpackage PluginsModifier
7  */
8
9 /**
10  * Smarty replace modifier plugin
11  * Type:     modifier<br>
12  * Name:     replace<br>
13  * Purpose:  simple search/replace
14  *
15  * @link   http://smarty.php.net/manual/en/language.modifier.replace.php replace (Smarty online manual)
16  * @author Monte Ohrt <monte at ohrt dot com>
17  * @author Uwe Tews
18  *
19  * @param string $string  input string
20  * @param string $search  text to search for
21  * @param string $replace replacement text
22  *
23  * @return string
24  */
25 function smarty_modifier_replace($string, $search, $replace)
26 {
27     if (Smarty::$_MBSTRING) {
28         if (!is_callable('smarty_mb_str_replace')) {
29             require_once(SMARTY_PLUGINS_DIR . 'shared.mb_str_replace.php');
30         }
31         return smarty_mb_str_replace($search, $replace, $string);
32     }
33
34     return str_replace($search, $replace, $string);
35 }