PHP | str_repeat()函数
str_repeat()函数是PHP中的内置函数,用于通过重复给定字符串固定次数来创建新字符串。它接受一个字符串和一个整数作为参数,并返回一个新字符串,该字符串是通过将作为参数传递的字符串重复作为参数传递给此函数的整数定义的次数而生成的。
语法:
string str_repeat ( $string, $no_of_times )
参数:此函数接受两个参数,并且都必须传递。
- $ 字符串 :这个参数代表要重复的字符串
- $no_of_times :此参数表示一个数字,表示参数 $字符串要重复的次数。此参数应大于或等于零。
返回值:此函数返回一个新字符串,该字符串由重复给定字符串$字符串给定次数组成。如果传递给函数的参数 $no_of_times 等于 0,则函数返回一个空字符串。
例子:
Input : $str = \'GeeksForGeeks\';
print_r(str_repeat($str, 2));
Output :GeeksForGeeksGeeksForGeeks
Input : $str = \' Run\';
print_r(str_repeat($str, 7));
Output : Run Run Run Run Run Run Run
下面的程序说明了PHP中的 str_repeat()函数:
程序 - 1 :
输出:
GeeksForGeeksGeeksForGeeks
程序 - 2 :
输出:
Run Run Run Run Run Run Run
参考:
http:// PHP.net/manual/en/函数.str-repeat。 PHP