當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


PHP string str_repeat()用法及代碼示例


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_repeat() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。