I have some text:
text,text • text.text • text:text
I need
array(\'text,text\',\'text.text\',\'text:text);
H
Try that:
$str = "text,text • text.text • text:text"; $new_arr = explode ('•', $str);