标签: php
我想创建字符串:?,?,?,我想在其中指定字符?重复的次数以及分隔符,将是多少次。
?,?,?
?
,
是否有比以下更可读的方式:
trim(str_repeat('?,', 3), ',')
答案 0 :(得分:5)
试试:
implode(',', array_fill(0, 3, '?'))