home *** CD-ROM | disk | FTP | other *** search
/ Enter 2004 June / ENTER.ISO / files / xampp-win32-1.4.5-installer.exe / xampp / modifier.rawurlencode.php < prev    next >
Encoding:
PHP Script  |  2004-03-24  |  421 b   |  19 lines

  1. <?php
  2. /** @package Smarty
  3. * @subpackage plugins */
  4.  
  5. /**
  6.  * Smarty plugin
  7.  * -------------------------------------------------------------
  8.  * Type:     modifier
  9.  * Name:     rawurlencode
  10.  * Purpose:  encode string for use in PDFdefaultConverter TOC
  11.  * -------------------------------------------------------------
  12.  */
  13. function smarty_modifier_rawurlencode($string)
  14. {
  15.     return rawurlencode($string);
  16. }
  17.  
  18. ?>
  19.