PHP str_repeat() 函数


实例

把字符串 "Shanghai " 重复 5 次:

  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4. <?php
  5. echo str_repeat("Shanghai ",5);
  6. ?>
  7. </body>
  8. </html>

定义和用法

str_repeat() 函数把字符串重复指定的次数。


语法

  1. str_repeat(string,repeat)
参数描述
string必需。规定要重复的字符串。
repeat必需。规定字符串将被重复的次数。必须大于等于 0。

技术细节

返回值:返回被重复的字符串。
PHP 版本:4+

分类导航