enchant_broker_list_dicts

(PHP 5 >= 5.3.0, PHP 7, PECL enchant >= 1.0.1) Returns a list of available dictionaries mixed enchant_broker_list_dicts ( resource $broker ) Returns a list of available dictionaries with their details. Parameters: broker Broker resource Returns: Returns TRUE on success or FALSE on failure. E

enchant_broker_get_dict_path

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

enchant_broker_get_error

(PHP 5 >= 5.3.0, PHP 7, PECL enchant >= 0.1.0 ) Returns the last error of the broker string enchant_broker_get_error ( resource $broker ) Returns the last error which occurred in this broker. Parameters: broker Broker resource. Returns: Return the msg string if an error was found or FALSE

enchant_broker_request_dict

(PHP 5 >= 5.3.0, PHP 7, PECL enchant >= 0.1.0 ) create a new dictionary using a tag resource enchant_broker_request_dict ( resource $broker, string $tag ) create a new dictionary using tag, the non-empty language tag you wish to request a dictionary for ("en_US", "de_DE", ...) Parameters: broker Broker resource tag A tag describin

enchant_broker_init

(PHP 5 >= 5.3.0, PHP 7, PECL enchant >= 0.1.0 ) create a new broker object capable of requesting resource enchant_broker_init ( void ) Returns: Returns a broker resource on success or FALSE. See also: enchant_broker_free() -

enchant_broker_free

(PHP 5 >= 5.3.0, PHP 7, PECL enchant >= 0.1.0 ) Free the broker resource and its dictionnaries bool enchant_broker_free ( resource $broker ) Free a broker resource with all its dictionaries. Parameters: broker Broker resource Returns: Returns TRUE on success or FALSE on failure.

enchant_broker_request_pwl_dict

(PHP 5 >= 5.3.0, PHP 7, PECL enchant >= 0.1.0 ) creates a dictionary using a PWL file resource enchant_broker_request_pwl_dict ( resource $broker, string $filename ) Creates a dictionary using a PWL file. A PWL file is personal word file one word per line. Parameters: broker Broker resource filename Path to the PWL file. If there

xdiff_string_patch

(PECL xdiff >= 0.2.0) Patch a string with an unified diff string xdiff_string_patch ( string $str, string $patch [, int $flags [, string &$error ]] ) Patches a str string with an unified patch in patch parameter and returns the result. patch has to be an unified diff created by xdiff_file_diff()/xdiff_string_diff() function. An optional flags parameter specifies mode of operation. Any rejected parts of the patch will

enchant_broker_describe

(PHP 5 >= 5.3.0, PHP 7, PECL enchant >= 0.1.0) Enumerates the Enchant providers array enchant_broker_describe ( resource $broker ) Enumerates the Enchant providers and tells you some rudimentary information about them. The same info is provided through phpinfo(). Parameters: broker Broker resource Returns: Returns TRUE on success or FALSE o

enchant_broker_dict_exists

(PHP 5 >= 5.3.0, PHP 7, PECL enchant >= 0.1.0 ) Whether a dictionary exists or not. Using non-empty tag bool enchant_broker_dict_exists ( resource $broker, string $tag ) Tells if a dictionary exists or not, using a non-empty tags Parameters: broker Broker resource tag non-empty tag in the LOCALE format, ex: us_US, ch_DE, etc.