str_repeat
(PHP 4, PHP 5, PHP 7, PHP 8)
str_repeat — Repeat a string
Parameters
stringThe string to be repeated.
timesNumber of time the
stringstring should be repeated.timeshas to be greater than or equal to 0. If thetimesis set to 0, the function will return an empty string.
Return Values
Returns the repeated string.
Examples
Example #1 str_repeat() example
<?php
echo str_repeat("-=", 10);
?>The above example will output:
-=-=-=-=-=-=-=-=-=-=
See Also
- for
- str_pad() - Pad a string to a certain length with another string
- substr_count() - Count the number of substring occurrences
↑ and ↓ to navigate • Enter to select • Esc to close • / to open