Most voted "explode" questions
3 questions
Sort by count of
-
2
votes2
answers92
viewsEmpty Space in PHP String Explode
Hello, I’m having problems using a EXPLODE in a PHP String. I used a space as delimiter but I need to pick up when there are 3 spaces followed as a position in the Array. It is an exercise of a…
-
1
votes1
answer43
viewsFunction explodes that ignores content inside quotes
I’m working on a project in PHP what you need to do import archival CSV, whose separator is by ;. I’m using explode to make the process, but the problem is that in some cases the content may come…
-
0
votes4
answers460
viewsHow do you separate word into letters in php?
I want to separate a string that has no separation in an array example $s = "123"; $array=["1","2","3"]; I tried to use it as follows valores = (array) explode("",$IdNota); but he gives Warning:…