Required : Integer , Number of times the input string is to be repeated.
Using str_repeat string function we can repeat a string by a number ( known as multiplier ). Say we want to repeat a string $ for ten times, here is the syntax for the function str_repeat.
Here is one example
echo str_repeat('$',10);
The above command will print $ ten times.
Now let us move to another example. How about printing such a pattern ?