标签: php
我有一种情况需要根据具体的数字插入特定的字符串。例如,数字是4,我需要4个特定的字符串(在这种情况下是'?'),如下所示:数字5,所以$str = '?????'。 换句话说,我有一个像['first item','second item', 'third item']这样的数组。我需要计算此数组中的项目,可以通过count()并根据该数字插入?来完成。因此,最终字符串应为'?,?,?',','为分隔符。
'?'
$str = '?????'
['first item','second item', 'third item']
count()
?
'?,?,?'
','