You are here

function smarty_modifier_spacify in Quiz 6.5

Same name and namespace in other branches
  1. 6.6 includes/moodle/lib/smarty/plugins/modifier.spacify.php \smarty_modifier_spacify()

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)

Parameters

string:

Return value

string

File

includes/moodle/lib/smarty/plugins/modifier.spacify.php, line 21

Code

function smarty_modifier_spacify($string, $spacify_char = ' ') {
  return implode($spacify_char, preg_split('//', $string, -1, PREG_SPLIT_NO_EMPTY));
}