home *** CD-ROM | disk | FTP | other *** search
/ PC Professionell 2005 June / PCpro_2005_06.ISO / files / opensource / xamp / xampp-win32.exe / xampp / modifier.htmlentities.php < prev    next >
Encoding:
PHP Script  |  2004-03-24  |  393 b   |  19 lines

  1. <?php
  2. /** @package Smarty
  3. * @subpackage plugins */
  4.  
  5. /**
  6.  * Smarty plugin
  7.  * -------------------------------------------------------------
  8.  * Type:     modifier
  9.  * Name:     upper
  10.  * Purpose:  convert string to uppercase
  11.  * -------------------------------------------------------------
  12.  */
  13. function smarty_modifier_htmlentities($string)
  14. {
  15.     return htmlentities($string);
  16. }
  17.  
  18. ?>
  19.