Sources for file plugins/smarty/modifier.spacify.php in version 2.0 Beta 4
Click on a comment to hide it. Click here to show all comments.
/*
* Smarty plugin
* -------------------------------------------------------------
* Type: modifier
* Name: spacify
* Purpose: add spaces between characters in a string
* -------------------------------------------------------------
*/
function smarty_modifier_spacify($string, $spacify_char = ' ')
{
return implode($spacify_char,
preg_split('//', $string, -1, PREG_SPLIT_NO_EMPTY));
}
/* vim: set expandtab: */
?>
