str_repeat
(PHP4 >= 4.0b4)
str_repeat --- 重复字符串
语法 :
string str_repeat
(string input, int multiplier)说明 :
传回 input重复 multiplier次后的字符串,参数 multiplier必须大于 0。
Example :
<?php
echo str_repeat ("-=", 10);
?>
上面的范例将会输出 "-=-=-=-=-=-=-=-=-=-="。
注意 : 此函数是PHP4.0中新增的函数