php str_repeat()函数 语法
Posted 佰草伐
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php str_repeat()函数 语法相关的知识,希望对你有一定的参考价值。
php str_repeat()函数 语法
str_repeat()函数怎么用?
php str_repeat()函数用于重复使用指定字符串,语法是str_repeat(string,repeat),此函数把字符串重复指定的次数。大理石平台
作用:重复使用指定字符串
语法:str_repeat(string,repeat)
参数:
参数 | 描述 |
string | 必须,要重复的字符串 |
repeat | 必须,规定字符串重复的次数,必须大于等于0 |
说明:str_repeat()函数把字符串重复指定的次数
php str_repeat()函数 示例
<?php $i = "hello world!"; $j = str_repeat($i,3);//设置字符串重复的次数为3 echo $j; ?>
以上是关于php str_repeat()函数 语法的主要内容,如果未能解决你的问题,请参考以下文章