pspell_config_dict_dir

(PHP 5, PHP 7) Location of the main word list bool pspell_config_dict_dir ( int $conf, string $directory ) Returns: Returns TRUE on success or FALSE on failure. This function is currently not documented; only its argument list is available.

pspell_config_data_dir

(PHP 5, PHP 7) location of language data files bool pspell_config_data_dir ( int $conf, string $directory ) Returns: Returns TRUE on success or FALSE on failure. This function is currently not documented; only its argument list is available.

pspell_check

(PHP 4 >= 4.0.2, PHP 5, PHP 7) Check a word bool pspell_check ( int $dictionary_link, string $word ) pspell_check() checks the spelling of a word. Parameters: dictionary_link pspell_check() checks the spelling of a word. word The tested word. Returns: Returns TRUE if the spelling is correct, FALSE if not.

pspell_clear_session

(PHP 4 >= 4.0.2, PHP 5, PHP 7) Clear the current session bool pspell_clear_session ( int $dictionary_link ) pspell_clear_session() clears the current session. The current wordlist becomes blank, and, for example, if you try to save it with pspell_save_wordlist(), nothing happens. Parameters: dictionary_link pspell_clear_session() clears the current session. The current

mb_substr_count

(PHP 4 >= 4.3.0, PHP 5, PHP 7) Count the number of substring occurrences int mb_substr_count ( string $haystack, string $needle [, string $encoding = mb_internal_encoding() ] ) Counts the number of times the needle substring occurs in the haystack string. Parameters: haystack The string being checked. needle The string being found.

pspell_add_to_personal

(PHP 4 >= 4.0.2, PHP 5, PHP 7) Add the word to a personal wordlist bool pspell_add_to_personal ( int $dictionary_link, string $word ) pspell_add_to_personal() adds a word to the personal wordlist. If you used pspell_new_config() with pspell_config_personal() to open the dictionary, you can save the wordlist later with pspell_save_wordlist(). Parameters: dictionary_link

mb_substr

(PHP 4 >= 4.0.6, PHP 5, PHP 7) Get part of string string mb_substr ( string $str, int $start [, int $length = NULL [, string $encoding = mb_internal_encoding() ]] ) Performs a multi-byte safe substr() operation based on number of characters. Position is counted from the beginning of str. First character's position is 0. Second character position is 1, and so on. Parameters: str

pspell_add_to_session

(PHP 4 >= 4.0.2, PHP 5, PHP 7) Add the word to the wordlist in the current session bool pspell_add_to_session ( int $dictionary_link, string $word ) pspell_add_to_session() adds a word to the wordlist associated with the current session. It is very similar to pspell_add_to_personal() Parameters: dictionary_link pspell_add_to_session() adds a word to the wordlist associ

mb_strrpos

(PHP 4 >= 4.0.6, PHP 5, PHP 7) Find position of last occurrence of a string in a string int mb_strrpos ( string $haystack, string $needle [, int $offset = 0 [, string $encoding = mb_internal_encoding() ]] ) Performs a multibyte safe strrpos() operation based on the number of characters. needle position is counted from the beginning of haystack. First character's position is 0. Second character position is 1.

mb_strstr

(PHP 5 >= 5.2.0, PHP 7) Finds first occurrence of a string within another string mb_strstr ( string $haystack, string $needle [, bool $before_needle = false [, string $encoding = mb_internal_encoding() ]] ) mb_strstr() finds the first occurrence of needle in haystack and returns the portion of haystack. If needle is not found, it returns FALSE. Parameters: haystack T