Strings Php

$text = "pot post pat patent";
if (preg_match ( "/p.*t/", $text, $array ) ) {
  print "
\n";
  print_r( $array );
  print "
\n";
}
?>