目录

PHP str_repeat() 函数

❮ PHP 字符串参考

示例

重复字符串 "Wow" 13 次:

<?php
echo str_repeat("Wow",13);
?>
亲自试一试 »

定义和用法

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


语法

str_repeat( string,repeat)

参数值

Parameter Description
string Required. Specifies the string to repeat
repeat Required. Specifies the number of times the string will be repeated. Must be greater or equal to 0

技术细节

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

❮ PHP 字符串参考