Javascript debugger
Website design
↑
aspell_check() checks the spelling of a word.
The dictionnary link identifier returned by aspell_new().
The tested word.
<?php
$aspell_link = aspell_new("english");
if (aspell_check($aspell_link, "testt")) {
echo "This is a valid spelling";
} else {
echo "Sorry, wrong spelling";
}
?>
aspell_check_raw() |