php str_repeat()函數用於透過重複給定字串固定次數來建立新字串,並傳回該新字串;語法是“str_repeat(string,repeat)”,參數string指定要重複的字串,參數repeat指定字串要重複的次數,必須大於等於0。
php str_repeat()函數用於透過重複給定字串固定次數來建立新字串,語法是str_repeat(string,repeat)。它接受一個字串和一
php str_repeat函數怎麼用?
php str_repeat()函數可以重複使用指定字串,用於透過重複給定字串固定次數來建立新字串,該字串是透過將作為參數傳遞的字串重複由作為該函數的參數傳遞的整數定義的次數所產生的。
語法:
str_repeat(string,repeat)
參數:
● string:必須參數,要重複的字串
● repeat:必須參數,規定字串重複的次數,必須大於等於0。
傳回值:str_repeat傳回一個新字串,該字串由給定次數重複給定字串$ string組成。如果傳遞給函數的參數$ no_of_times等於0,則該函數傳回一個空字串。
範例
<?php $i = "hello world!"; $j = str_repeat($i,3);//设置字符串重复的次数为3 echo $j; ?>
輸出:
hello world!hello world!hello world!
以上是php str_repeat函數怎麼用?的詳細內容。更多資訊請關注PHP中文網其他相關文章!