fork download
  1. <?php
  2.  
  3. $string = "Lorem ipsum dolor sit amet, @consectetur adipiscing elit. Morbi et neque eget neque pellentesque consequat in vel ante. Integer quis urna vitae mauris @placerat molestie sed at nunc.";
  4.  
  5.  
  6. $parsed = explode("@",$string);
  7. $no_tag = array_shift($parsed);
  8.  
  9. foreach($parsed as $tag){
  10.  
  11. $tags[] = strtok($tag, " ");
  12. }
  13.  
  14. print_r($tags);
  15. ?>
Success #stdin #stdout 0.02s 13112KB
stdin
Standard input is empty
stdout
Array
(
    [0] => consectetur
    [1] => placerat
)