mirror of
https://github.com/smarty-php/smarty.git
synced 2025-10-16 22:15:21 +02:00
20 lines
463 B
PHP
20 lines
463 B
PHP
<?php
|
|
|
|
/*
|
|
* 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: */
|
|
|
|
?>
|