explode($findThis, $targetString);
explode("/", "ab/dvf/dfa");
> ["ab", "dvf", "dfa"]
str_split($targetString, [int length]);
str_split("dddd");
> ["d", "d", "d", "d"]
str_split("dddd", 2);
> ["dd", "dd"]
explode("/", "ab/dvf/dfa");
> ["ab", "dvf", "dfa"]
str_split($targetString, [int length]);
str_split("dddd");
> ["d", "d", "d", "d"]
str_split("dddd", 2);
> ["dd", "dd"]
No comments :
Post a Comment