php str_repeat函數(shù)的用法是什么

PHP
小億
84
2024-04-09 18:02:36
欄目: 編程語言

str_repeat函數(shù)用于重復(fù)一個(gè)字符串指定的次數(shù),其語法如下:

str_repeat(string, multiplier)

其中,string為要重復(fù)的字符串,multiplier為重復(fù)的次數(shù)。例如,下面的代碼將會(huì)輸出"HelloHelloHello":

echo str_repeat("Hello", 3);

0