Pretty annoying, exploding an empty string with – for example space – returns an array with one element, indexed with 0 and containing an empty string: $string = “”; explode(” “, $string); returns array( [0] => ” ) Exploding an empty string should return an empty array. No matter what biased logic do we follow. […]