按照分隔符分隔字符串为数组

StringHelper::explode('It, is, a first, test'));//['It','is','a first','test']
StringHelper::explode("a@b@c","@");//['a','b','c']