modifier.upper.php 580 B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. /**
  3. * Smarty plugin
  4. *
  5. * @package Smarty
  6. * @subpackage PluginsModifier
  7. */
  8. /**
  9. * Smarty upper modifier plugin
  10. *
  11. * Type: modifier<br>
  12. * Name: upper<br>
  13. * Purpose: convert string to uppercase
  14. *
  15. * @link http://smarty.php.net/manual/en/language.modifier.upper.php upper (Smarty online manual)
  16. * @author Monte Ohrt <monte at ohrt dot com>
  17. * @param string $
  18. * @return string
  19. */
  20. function smarty_modifier_upper($string)
  21. {
  22. if (function_exists('mb_strtoupper')) {
  23. return mb_strtoupper($string);
  24. } else {
  25. return strtoupper($string);
  26. }
  27. }
  28. ?>