文字列を反復する
$string
$times
string を times 回を繰り返した文字列を返します。
string
times
繰り返す文字列。
string を繰り返す回数。
times は 0 以上でなければなりません。 times が 0 に設定された場合、この関数は空文字を返します。
繰り返した文字列を返します。
例1 str_repeat の例
<?php echo str_repeat("-=", 10); ?>
上の例の出力は以下となります。
-=-=-=-=-=-=-=-=-=-=