/**
 *
 *
 *  @package application.helper.smarty
 *  @author Integry Systems
 */
function smarty_modifier_str_pad_iconv($string, $count, $pad = ' ', $pad_type = STR_PAD_RIGHT)
{
    return iconv_str_pad($string, $count, $pad, $pad_type);
}
Exemple #2
0
function str_pad_left($string, $count, $pad = ' ')
{
    return iconv_str_pad($string, $count, $pad, STR_PAD_LEFT);
}