PHPize Online / SQLize Online  /  SQLtest Online

A A A
Share      Blog   Popular

str_repeat

Tags: PHP 5.x PHP 7.x PHP 8.x

str_repeat — Repeat a string.

Description

str_repeat(
    string $string,
int $times
): string
Returns string repeated times times.

Parameters

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.

Return Values

Returns the repeated string.