Page MenuHomeCode

modifier.spacify.php
No OneTemporary

modifier.spacify.php

<?php
/**
* Smarty plugin
*
* @package Smarty
* @subpackage PluginsModifier
*/
/**
* 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
*/
function smarty_modifier_spacify($string, $spacify_char = ' ')
{
return implode($spacify_char, preg_split('//', $string, -1));
}
?>

File Metadata

Mime Type
text/x-php
Expires
Sat, Feb 22, 20:24 (1 d, 7 h ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
25452
Default Alt Text
modifier.spacify.php (571 B)

Event Timeline