Let's say I have the following function:
public function normalize($string) {
$substrings = explode(",", $string);
return implode(",", $substrings);
}
Will ($string == normalize($string))
always be true? is there any special case I should consider?