php str_repeat函數怎麼用?

2020-07-16 10:05:37
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函數怎麼用?的詳細內容,更多請關注TW511.COM其它相關文章!