php 字符串分割 1,2,3, 字符串是这样的

2024-11-07 17:01:19
推荐回答(2个)
回答1:

字符串的时候 如果最后是一个逗号 则清除 不就OK了吗。

回答2:

$str = '1,2,3,';
$arr = explode(',',trim($str,','));