$variable = 'one, two, three';
How can I replace the commas between words with <br>?
$variable should become:
one<br>
two<br>
three
|
|
|
Either use
or, if you want to do other things with the elements in between,
|
||||
|
|
You can then just |
|||
|
|
This takes you into regex land but this will handle cases of random spacing between commas, e.g.
or
|
|||
|
|