Strings Php

$text = "take, tart, till";
if ( preg_match( "/\bt\w+s\b/", $text, $array ) ) {
  print "
\n";
  print_r( $array );
  print "
\n";
}
?>