PHP str_repeat() 字符串 函数 详解
php基础 2022-06-07 17:02:10小码哥的IT人生shichen
PHP str_repeat() 函数
实例
把字符串 "Shanghai " 重复 5 次:
<?php
echo str_repeat("Shanghai",5);
?>
完整实例:
<!DOCTYPE html>
<html>
<body>
<?php
echo str_repeat("Shanghai ",5);
?>
</body>
</html>
定义和用法
str_repeat() 函数把字符串重复指定的次数。
语法
str_repeat(string,repeat)
参数 | 描述 |
---|---|
string | 必需。规定要重复的字符串。 |
repeat | 必需。规定字符串将被重复的次数。必须大于等于 0。 |
技术细节
返回值: | 返回被重复的字符串。 |
PHP 版本: | 4+ |