<?php 
/** 
 * gTemplate Plugins 
 * 
 * @package    gTemplate 
 * @subpackage Plugins 
 */ 
 
/** 
 * gTemplate spacify modifier plugin 
 * 
 * Type:     modifier<br> 
 * Name:     spacify<br> 
 * Purpose:  add spaces between characters in a string 
 *  
 * @version 1.0 
 * @author Tamas David (G-Lex) <glex at mittudomain.info> 
 * @link https://github.com/glex86/g-template-php G-Template Engine on Github 
 * 
 * @internal Some source codes are taken from Smarty 
 * @internal author Monte Ohrt <monte at ohrt dot com> 
 * @internal link http://smarty.net Smarty 
 */ 
function tpl_modifier_spacify($string, $spacify_char = ' ') 
{ 
    return implode($spacify_char, preg_split('//', $string, -1, PREG_SPLIT_NO_EMPTY)); 
} 
 
 
 |