enchant_dict_store_replacement

(PHP 5 >= 5.3.0, PHP 7, PECL enchant >= 0.1.0 ) Add a correction for a word void enchant_dict_store_replacement ( resource $dict, string $mis, string $cor ) Add a correction for 'mis' using 'cor'. Notes that you replaced @mis with @cor, so it's possibly more likely that future occurrences of @mis will be replaced with @cor. So it might bump @cor up in the suggestion list. Parameters:

enchant_dict_quick_check

(PHP 5 >= 5.3.0, PHP 7, PECL enchant:0.2.0-1.0.1) Check the word is correctly spelled and provide suggestions bool enchant_dict_quick_check ( resource $dict, string $word [, array &$suggestions ] ) If the word is correctly spelled return TRUE, otherwise return FALSE, if suggestions variable is provided, fill it with spelling alternatives. Parameters: dict Dictionar

enchant_dict_is_in_session

(PHP 5 >= 5.3.0, PHP 7, PECL enchant >= 0.1.0 ) whether or not 'word' exists in this spelling-session bool enchant_dict_is_in_session ( resource $dict, string $word ) Tells whether or not a word already exists in the current session. Parameters: dict Dictionary resource word The word to lookup Returns: Re

enchant_dict_get_error

(PHP 5 >= 5.3.0, PHP 7, PECL enchant >= 0.1.0 ) Returns the last error of the current spelling-session string enchant_dict_get_error ( resource $dict ) Returns the last error of the current spelling-session Parameters: dict Dictinaray resource Returns: Returns the error message as string or FALSE if no error occurred.

enchant_dict_describe

(PHP 5 >= 5.3.0, PHP 7, PECL enchant >= 0.1.0 ) Describes an individual dictionary mixed enchant_dict_describe ( resource $dict ) Returns the details of the dictionary. Parameters: dict Dictionary resource Returns: Returns TRUE on success or FALSE on failure. Examples: A enchant

enchant_dict_check

(PHP 5 >= 5.3.0, PHP 7, PECL enchant >= 0.1.0 ) Check whether a word is correctly spelled or not bool enchant_dict_check ( resource $dict, string $word ) If the word is correctly spelled return TRUE, otherwise return FALSE Parameters: dict Dictionary resource word The word to check Returns: Returns TRUE i

enchant_dict_add_to_session

(PHP 5 >= 5.3.0, PHP 7, PECL enchant >= 0.1.0 ) add 'word' to this spell-checking session void enchant_dict_add_to_session ( resource $dict, string $word ) Add a word to the given dictionary. It will be added only for the active spell-checking session. Parameters: dict Dictionary resource word The word to add

enchant_dict_add_to_personal

(PHP 5 >= 5.3.0, PHP 7, PECL enchant >= 0.1.0 ) add a word to personal word list void enchant_dict_add_to_personal ( resource $dict, string $word ) Add a word to personal word list of the given dictionary. Parameters: dict Dictionary resource word The word to add Returns: Returns TRUE on success or FALSE

enchant_broker_set_ordering

(PHP 5 >= 5.3.0, PHP 7, PECL enchant >= 0.1.0 ) Declares a preference of dictionaries to use for the language bool enchant_broker_set_ordering ( resource $broker, string $tag, string $ordering ) Declares a preference of dictionaries to use for the language described/referred to by 'tag'. The ordering is a comma delimited list of provider names. As a special exception, the "*" tag can be used as a language tag to declar

enchant_broker_set_dict_path

(PHP 5 >= 5.3.1, PHP 7, PECL enchant >= 1.0.1) Set the directory path for a given backend bool enchant_broker_set_dict_path ( resource $broker, int $dict_type, string $value ) Set the directory path for a given backend. Parameters: broker Broker resource. dict_type The type of the dictionaries, i.e. ENCHANT_MYSPELL or ENCHANT_ISPE