fork(1) download
  1. <?php
  2.  
  3. $test = '<a id="test">One &amp; -Two&nbsp;-&nbsp;Three</a>';
  4. $res = explode("&nbsp;-&nbsp;", strip_tags($test));
  5. echo $res[0]. "\n" . $res[1];
Success #stdin #stdout 0s 52488KB
stdin
Standard input is empty
stdout
One &amp; -Two
Three