As far as I can understand, Kirk means the following. For example, if you are going to have array like:
$a[0]='a,a,a'
$a[1]='b'
from the $string_to_explode='a,a,a,b' and you explode by ',' (explode($string_to_explode, ',') - just like your explode), you will get
$a[0]='a'
$a[1]='a'
$a[2]='a'
$a[3]='b'
If you are imploding the strings with ',' and then you explode them by ',' - the result will be incorrect if the original strings contain ',' in them.