fork download
  1. <?php
  2.  
  3. $text = "This is a text • and this too";
  4.  
  5. $arry = explode('•',$text);
  6.  
  7. print_r($arry);
Success #stdin #stdout 0.01s 24400KB
stdin
Standard input is empty
stdout
Array
(
    [0] => This is a text 
    [1] =>  and this too
)