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

  1. <?php
  2. /** @package Smarty
  3. * @subpackage plugins */
  4.  
  5. /**
  6.  * Smarty plugin
  7.  * -------------------------------------------------------------
  8.  * Type:     function
  9.  * Name:     assign
  10.  * Purpose:  assign a value to a template variable
  11.  * -------------------------------------------------------------
  12.  */
  13. function smarty_function_var_dump($params, &$smarty)
  14. {
  15.     var_dump('<pre>',$params,'</pre>');
  16. }
  17.  
  18. /* vim: set expandtab: */
  19.  
  20. ?>
  21.