Repeating String str_repeat function
echo str_repeat('$',10);
The above command will print $ ten times.
$$$$$$$$$$
Syntax.
str_repeat (input $string, int $multiplier );
Parameter | DESCRIPTION |
$string | Required : Input string which is to be repeated |
$multiplier | 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 ).
We will generate this pattern ?
*
**
***
****
*****
******
*******
********
*********
**********
Here is the code for this
for($i=1;$i<=10;$i++){
echo str_repeat("*",$i);
echo "<br>";
}
← String Functions str_pad(): Padding string →
nl2br() To add Line break →
← Subscribe to our YouTube Channel here
This article is written by plus2net.com team.
https://www.plus2net.com
plus2net.com