fork download
  1. <?php
  2. $hashtag = "#caio #azul #caio #azul #leão #orelha #caio #caio #caio";
  3. //
  4. $hashtagArray = explode(" ", $hashtag);
  5.  
  6. $hashtagArray = array_filter($hashtagArray);
  7.  
  8. $hashtagArray = array_unique($hashtagArray);
  9.  
  10. print_r($hashtagArray);
Success #stdin #stdout 0.02s 23844KB
stdin
Standard input is empty
stdout
Array
(
    [0] => #caio
    [1] => #azul
    [4] => #leão
    [5] => #orelha
)