str_repeat
Repeat a string
str_repeat()
function repeats the string as specified.
Repeat the string "Shanghai" 5 times:
<?php echo str_repeat ( "Shanghai" , 5 ) ; ?>
Try it yourself
str_repeat ( string , repeat )
parameter | describe |
---|---|
string | Required. Specifies the string to be repeated. |
repeat | Required. Specifies the number of times the string will be repeated. Must be greater than or equal to 0. |