PHP - 字符串重复函数



语法

str_repeat(string,length,pad_string,pad_type)

定义和用法

用于将字符串重复特定次数。

返回值

返回重复后的字符串

参数

序号 参数及描述
1

字符串

指定要重复的字符串

2

重复次数

指定要重复字符串的次数

示例

尝试以下示例

<?php
   echo str_repeat("tutorialspoint",5);
?>

这将产生以下结果:

tutorialspointtutorialspointtutorialspointtutorialspointtutorialspoint
php_function_reference.htm
广告