game/onyx2/modules/templates/smarty/plugins/modifier.spacify.php

28 lines
571 B
PHP
Raw Normal View History

2009-11-01 11:00:00 +00:00
<?php
/**
2020-11-15 15:12:32 +00:00
* Smarty plugin
*
* @package Smarty
* @subpackage PluginsModifier
*/
2009-11-01 11:00:00 +00:00
/**
2020-11-15 15:12:32 +00:00
* Smarty spacify modifier plugin
*
* Type: modifier<br>
* Name: spacify<br>
* Purpose: add spaces between characters in a string
*
* @link http://smarty.php.net/manual/en/language.modifier.spacify.php spacify (Smarty online manual)
* @author Monte Ohrt <monte at ohrt dot com>
* @param string $
* @param string $
* @return string
*/
2009-11-01 11:00:00 +00:00
function smarty_modifier_spacify($string, $spacify_char = ' ')
{
2020-11-15 15:12:32 +00:00
return implode($spacify_char, preg_split('//', $string, -1));
}
2009-11-01 11:00:00 +00:00
?>