modifier.replace.php 834 B

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