fork download
  1. <?php
  2. $subject = "Warmly the little in before cousin as sussex...";
  3. $tags = explode(" ", strtolower($subject));
  4.  
  5. $definite_articles = array('the','this','then','there','from','for','to','as');
  6.  
  7. $tags = array_diff($tags, $definite_articles);
  8. print_r($tags);
  9. ?>
Success #stdin #stdout 0.02s 25392KB
stdin
Standard input is empty
stdout
Array
(
    [0] => warmly
    [2] => little
    [3] => in
    [4] => before
    [5] => cousin
    [7] => sussex...
)