str_repeat

(PHP 4, PHP 5, PHP 7, PHP 8)

str_repeatRepeat a string

Опис

str_repeat(string $string, int $times): string

Returns string repeated times times.

Параметри

string

The string to be repeated.

times

Number of time the string string should be repeated.

times has to be greater than or equal to 0. If the times is set to 0, the function will return an empty string.

Значення, що повертаються

Returns the repeated string.

Приклади

Приклад #1 str_repeat() example

<?php
echo str_repeat("-=", 10);
?>

Поданий вище приклад виведе:

-=-=-=-=-=-=-=-=-=-=

Прогляньте також