コード例 #1
0
/**
 *
 *
 *  @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);
}
コード例 #2
0
ファイル: modifier.str_pad_left.php プロジェクト: saiber/www
function str_pad_left($string, $count, $pad = ' ')
{
    return iconv_str_pad($string, $count, $pad, STR_PAD_LEFT);
}