XOOPS 2.5.6  Final
 All Classes Namespaces Files Functions Variables Pages
modifier.spacify.php
Go to the documentation of this file.
1 <?php
22 function smarty_modifier_spacify($string, $spacify_char = ' ')
23 {
24  return implode($spacify_char,
25  preg_split('//', $string, -1, PREG_SPLIT_NO_EMPTY));
26 }
27 
28 /* vim: set expandtab: */
29 
30 ?>