PHP String 函数
str_repeat() 函数把字符串重复指定的次数。
str_repeat(string,repeat)
<?php echo str_repeat(".",13); ?>
str_repeat(".",13)
输出:
.............
Search: