Show Output
Find Closest Match of a Misspelled Word in PHP
"; // Specify the sensitivity of the result if($shortest > 3){ echo "No appropriate match found." . "
"; } elseif($shortest == 0){ echo "Exact match found: $closest" . "
"; } else{ echo "Did you mean: $closest?"; } ?>