mirror of
https://github.com/smarty-php/smarty.git
synced 2025-11-08 00:01:38 +01:00
15 lines
297 B
Markdown
15 lines
297 B
Markdown
|
|
# str_repeat
|
||
|
|
|
||
|
|
Repeats the given value n times.
|
||
|
|
|
||
|
|
## Basic usage
|
||
|
|
```smarty
|
||
|
|
{"hi"|str_repeat:2} # renders: hihi
|
||
|
|
```
|
||
|
|
|
||
|
|
## Parameters
|
||
|
|
|
||
|
|
| Parameter | Type | Required | Description |
|
||
|
|
|-----------|------|----------|-----------------------|
|
||
|
|
| 1 | int | yes | number of repetitions |
|