modifiercompiler.upper.php 723 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. /**
  3. * Smarty plugin
  4. *
  5. * @package Smarty
  6. * @subpackage PluginsModifierCompiler
  7. */
  8. /**
  9. * Smarty upper modifier plugin
  10. *
  11. * Type: modifier<br>
  12. * Name: lower<br>
  13. * Purpose: convert string to uppercase
  14. *
  15. * @link http://smarty.php.net/manual/en/language.modifier.upper.php lower (Smarty online manual)
  16. * @author Uwe Tews
  17. * @param array $params parameters
  18. * @return string with compiled code
  19. */
  20. function smarty_modifiercompiler_upper($params, $compiler)
  21. {
  22. if (Smarty::$_MBSTRING) {
  23. return 'mb_strtoupper(' . $params[0] . ', \'' . addslashes(Smarty::$_CHARSET) . '\')' ;
  24. }
  25. // no MBString fallback
  26. return 'strtoupper(' . $params[0] . ')';
  27. }
  28. ?>