Repeat the string "." 13 times:
<?phpecho str_repeat(".",13);?>The str_repeat() function repeats a string a specified number of times.
str_repeat( string,repeat )
parameter | describe |
---|---|
string | Required. Specifies the string to be repeated. |
repeat | Required. Specifies the number of times a string will be repeated. Must be greater than or equal to 0. |
Return value: | Returns the repeated string. |
---|---|
PHP version: | 4+ |