fork download
  1. <?php
  2.  
  3. $str = '#heavy / machine gun #test';
  4.  
  5. $arr = array_filter(array_map(function($str){
  6. return strtok($str, ' ');
  7. }, explode('#', $str)));
  8.  
  9. print_r($arr);
Success #stdin #stdout 0s 20520KB
stdin
Standard input is empty
stdout
Array
(
    [1] => heavy
    [2] => test
)