PHP每隔几位给字符串插入特定符号
super
2022-11-14 21:12
1563
例如:每隔3位插入“-”
$str = '123123123';
echo implode('-', str_split($str, 3));
0 条讨论