str_repeat()函数是PHP中的内置函数,用于通过将给定的字符串重复固定的次数来创建新的字符串。它以一个字符串和一个整数作为参数,并返回一个新字符串,该字符串是通过将作为参数传递的字符串重复此函数作为参数传递的整数定义的次数而生成的。
用法:
string str_repeat ( $string, $no_of_times )
参数:此函数接受两个参数,并且两个参数都是必须传递的。
- $string:此参数表示要重复的字符串
- $no_of_times:此参数表示一个数字,该数字表示重复参数$string的次数。此参数应大于或等于零。
返回值:此函数返回一个新字符串,该字符串是通过重复给定字符串$string一定次数而组成的。如果传递给该函数的参数$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::
<?php
// Input string
$str = 'GeeksForGeeks';
// Repeated string
print_r(str_repeat($str, 2));
?>
输出:
GeeksForGeeksGeeksForGeeks
程序2::
<?php
// Input string
$str = ' Run';
// Repeated string
print_r(str_repeat($str, 7));
?>
输出:
Run Run Run Run Run Run Run
参考:
http://php.net/manual/en/function.str-repeat.php
相关用法
- p5.js abs()用法及代码示例
- d3.js d3.set.has()用法及代码示例
- PHP pow( )用法及代码示例
- p5.js sq()用法及代码示例
- d3.js d3.hcl()用法及代码示例
- CSS var()用法及代码示例
- p5.js pow()用法及代码示例
- PHP pi( )用法及代码示例
- PHP Ds\Map get()用法及代码示例
- d3.js d3.map.get()用法及代码示例
- p5.js int()用法及代码示例
- p5.js value()用法及代码示例
注:本文由纯净天空筛选整理自HGaur大神的英文原创作品 PHP | str_repeat() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。