同じ文字を反復し出力するのに便利
string str_repeat ( string $input , int $multiplier )
繰り返した文字列を返します。
| 1 2 3 | <?php echo str_repeat("*", 10); ?> | 
同じ文字を反復し出力するのに便利
string str_repeat ( string $input , int $multiplier )
繰り返した文字列を返します。
| 1 2 3 | <?php echo str_repeat("*", 10); ?> |