|
Interestingly, join() isn't common usage. implode() is more common, at least for me, which implies that it is the opposite of explode(), versus the opposite of split() -- which it is NOT.
join() is just an alias for implode() .. so if you use implode(), it's more clear to use explode() to take it apart.
|