PHP 8.4.24 Released!

Voting

: min(six, three)?
(Example: nine)

The Note You're Voting On

webmaster at script-tease dot net
22 years ago
Easy way to make a spellchecker:

<?

function spellcheck ( $string ) {
    $words = preg_split('/[\W]+?/',$string);
    $misspelled = $return = array();
    $int = pspell_new('en');
    foreach ($words as $value) {
        if (!pspell_check($int, $value)) {
            $misspelled[] = $value;
        }
    }
    foreach ($misspelled as $value) {
        $return[$value] = pspell_suggest($int, $value);
    }
    return $return;
}

?>

<< Back to user notes page

To Top