repeater()

repeater($data[, $num = 1])

Parameters:
  • $data (string) – Input
  • $num (int) – Number of times to repeat
Returns:

Repeated string

Return type:

string

Generates repeating copies of the data you submit. Example:

1
2
$string = "\n";
echo repeater($string, 30);

The above would generate 30 newlines.

Note

This function is DEPRECATED. Use the native str_repeat() instead.

doc_CodeIgniter
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.