I have this string:
$myString = "toto;titi;tata;;;;tutu;;tyty";
I wish with : explode(';', $myString);
["toto","titi","tata","","","","tutu","","tyty"]
but i have :
$result = ["toto","titi","tata","tutu","tyty"];
I lose the values empty chains, I want to keep them.
I do not know how to do it, someone would have a solution plz ?