PHP String str_repeat()函数
str_repeat()是PHP的预定义函数。它用于重复一个字符串指定的次数。它返回重复多次的输入。
语法:
tr_repeat(string,repeat);
参数 | 描述 | 必需/可选 |
---|---|---|
string | 指定要重复的字符串 | 必需 |
repeat | 指定重复的次数 | 必需 |
示例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: ? ? ? ? ? ? ? ? ? ?;