str_repeat() 是 PHP 的预定义函数。它用于将字符串重复指定的次数。它返回重复多次的输入。
用法:
tr_repeat(string,repeat);
参数 | 描述 | 必需/可选 |
---|---|---|
String | 指定要重复的字符串。 | Required |
repeat | 指定重复的次数。 | required |
例子1
<?php
echo "Before using 'str_repeat()' function:('.',13)";
echo "<br>";
echo "After using 'str_repeat()' function:".str_repeat(".",13);
?>
输出:
Before using 'str_repeat()' function:('.',13) After using 'str_repeat()' function:..............
例子2
<?php
echo "Before using 'str_repeat()' function:('-=',10)";
echo "<br>";
echo "After using 'str_repeat()' function:".str_repeat('-=',10);
?>
输出:
Before using 'str_repeat()' function:('-=',10) After using 'str_repeat()' function:-=-=-=-=-=-=-=-=-=-=
例子3
<?php
echo "Before using 'str_repeat()' function:('?,10)";
echo "<br>";
echo "After using 'str_repeat()' function:".str_repeat('?',10);
?>
输出:
Before using 'str_repeat()' function:(' ??,10) After using 'str_repeat()' function:? ? ? ? ? ? ? ? ? ?;
相关用法
- PHP string str_rot13()用法及代码示例
- PHP string str_shuffle()用法及代码示例
- PHP string str_ireplace()用法及代码示例
- PHP string str_split()用法及代码示例
- PHP string str_pad()用法及代码示例
- PHP string str_word_count()用法及代码示例
- PHP string strcoll()用法及代码示例
- PHP string strip_tags()用法及代码示例
- PHP string strchr()用法及代码示例
- PHP string strcasecmp()用法及代码示例
- PHP string strcmp()用法及代码示例
- PHP string sha1()用法及代码示例
- PHP string setlocale()用法及代码示例
- PHP string sha1_file()用法及代码示例
- PHP string similar_text()用法及代码示例
- PHP string rtrim()用法及代码示例
- PHP string printf()用法及代码示例
- PHP string ord()用法及代码示例
- PHP string join()用法及代码示例
注:本文由纯净天空筛选整理自 PHP string str_repeat() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。