PHP以逗号为分割点,计算数组有长度

$str='张三,李四,王五 ,赵六';
$arr=explode(',',$str);
$total_element=count($arr);
//total_element就是数组元素的个数;

 

posted @ 2020-03-23 22:48  zhangPooo  阅读(403)  评论(0编辑  收藏  举报