$string = "amora"; $result = preg_match("#^amor(.*)$#i", $string); if($result == 0) { echo "No match"; } else { echo "Match found."; } //out: Match found.