fork(141) download
  1. <?php
  2. $subject = "Warmly 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 13112KB
stdin
Standard input is empty
stdout
Array
(
    [0] => warmly
    [1] => little
    [2] => in
    [3] => before
    [4] => cousin
    [6] => sussex...
)