XWare Поиск по информационным ресурсам МГУ English Russian
       
       Точная форма слов   О проекте   Сайты   Помощь
Поиск по:old.master.cmc.msu.ru   - Поискать по всем серверам
На этой странице приведены все страницы сервера old.master.cmc.msu.ru ,которые мы индексируем. Показаны документы 1001 - 1020 из 3519.

В начало ] Пред. | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | След.В конец ]

Упорядочить по: URL  |  дате изменения
1001. pspell_store_replacement
... PHP 4 >= 4.0.2) pspell_store_replacement -- Store a replacement pair for a word . ... Example 1. pspell_store_replacement() . pspell_config = pspell_config_create ("en"); pspell_config_personal ($pspell_config, "/var/dictionaries/custom.pws"); pspell_config_repl ($pspell_config, "/var/dictionaries/custom.repl"); $pspell_link = pspell_new_config ($pspell_config); pspell_store_replacement ($pspell_link, $misspelled, $correct); pspell_save_wordlist ($pspell_link); . ... pspell_save_wordlist . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.pspell-store-replacement.html -- 5.0 Кб -- 03.02.2002
Похожие документы

1002. pspell_suggest
PHP Manual . Prev . Next . PHP 4 >= 4.0.2) pspell_suggest -- Suggest spellings of a word . array pspell_suggest ( int dictionary_link, string word) . pspell_suggest() returns an array of possible spellings for the given word. Example 1. pspell_suggest() . pspell_link = pspell_new ("en"); if (!pspell_check ($pspell_link, "testt")) { $suggestions = pspell_suggest ($pspell_link, "testt"); foreach ($suggestions as $suggestion) { echo "Possible spelling: $suggestion<br>"; } } . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.pspell-suggest.html -- 3.9 Кб -- 03.02.2002
Похожие документы

1003. pspell_new_personal
... PHP 4 >= 4.0.2) pspell_new_personal -- Load a new dictionary with personal wordlist . int pspell_new_personal ( string personal, string language [, string spelling [, string jargon [, string encoding [, int mode]]]]) . ... The personal parameter specifies the file where words added to the personal list will be stored. ... The jargon parameter contains extra information to distinguish two different words lists that have the same language and spelling parameters. ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.pspell-new-personal.html -- 7.6 Кб -- 03.02.2002
Похожие документы

1004. pspell_new_config
... Next . PHP 4 >= 4.0.2) pspell_new_config -- Load a new dictionary with settings based on a given config . int pspell_new_config ( int config) . pspell_new_config() opens up a new dictionary with settings specified in a config, created with with pspell_config_create() and modified with pspell_config_*() functions. ... The config parameter is the one returned by pspell_config_create() when the config was created. Example 1. pspell_new_config() . ... pspell_new . ... pspell_new_personal ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.pspell-new-config.html -- 4.6 Кб -- 03.02.2002
Похожие документы

1005. pspell_new
... int pspell_new ( string language [, string spelling [, string jargon [, string encoding [, int mode]]]]) . ... The language parameter is the language code which consists of the two letter ISO 639 language code and an optional two letter ISO 3166 country code after a dash or underscore. ... The jargon parameter contains extra information to distinguish two different words lists that have the same language and spelling parameters. ... PSPELL_FAST - Fast mode (least number of suggestions) . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.pspell-new.html -- 6.3 Кб -- 03.02.2002
Похожие документы

1006. pspell_config_runtogether
PHP Manual . Prev . Next . PHP 4 >= 4.0.2) pspell_config_runtogether -- Consider run-together words as valid compounds . int pspell_config_runtogether ( int dictionary_link, bool flag) . ... This function determines whether run-together words will be treated as legal compounds. ... pspell_config = pspell_config_create ("en"); pspell_config_runtogether ($pspell_config, true); $pspell_link = pspell_new_config ($pspell_config); pspell_check ($pspell_link, "thecat"); . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.pspell-config-runtogether.html -- 4.5 Кб -- 03.02.2002
Похожие документы

1007. pspell_config_save_repl
PHP Manual . Prev . Next . PHP 4 >= 4.0.2) pspell_config_save_repl -- Determine whether to save a replacement pairs list along with the wordlist . ... It determines whether pspell_save_wordlist() will save the replacement pairs along with the wordlist. Usually there is no need to use this function because if pspell_config_repl() is used, the replacement pairs will be saved by pspell_save_wordlist() anyway, and if it is not, the replacement pairs will not be saved. ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.pspell-config-save-repl.html -- 4.2 Кб -- 03.02.2002
Похожие документы

1008. pspell_config_repl
PHP Manual . Prev . Next . PHP 4 >= 4.0.2) pspell_config_repl -- Set a file that contains replacement pairs . int pspell_config_repl ( int dictionary_link, string file) . ... pspell_config = pspell_config_create ("en"); pspell_config_personal ($pspell_config, "/var/dictionaries/custom.pws"); pspell_config_repl ($pspell_config, "/var/dictionaries/custom.repl"); $pspell_link = pspell_new_config ($pspell_config); pspell_check ($pspell_link, "thecat"); . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.pspell-config-repl.html -- 4.8 Кб -- 03.02.2002
Похожие документы

1009. pspell_config_personal
PHP Manual . Prev . Next . PHP 4 >= 4.0.2) pspell_config_personal -- Set a file that contains personal wordlist . int pspell_config_personal ( int dictionary_link, string file) . pspell_config_personal() should be used on a config before calling pspell_new_config() . ... pspell_config = pspell_config_create ("en"); pspell_config_personal ($pspell_config, "/var/dictionaries/custom.pws"); $pspell_link = pspell_new_config ($pspell_config); pspell_check ($pspell_link, "thecat"); . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.pspell-config-personal.html -- 4.6 Кб -- 03.02.2002
Похожие документы

1010. pspell_config_mode
PHP Manual . Prev . Next . PHP 4 >= 4.0.2) pspell_config_mode -- Change the mode number of suggestions returned . int pspell_config_mode ( int dictionary_link, int mode) . ... PSPELL_FAST - Fast mode (least number of suggestions) . PSPELL_NORMAL - Normal mode (more suggestions) . ... pspell_config = pspell_config_create ("en"); pspell_config_mode($pspell_config, PSPELL_FAST); $pspell_link = pspell_new_config($pspell_config); pspell_check($pspell_link, "thecat"); . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.pspell-config-mode.html -- 4.7 Кб -- 03.02.2002
Похожие документы

1011. pspell_config_create
... PHP 4 >= 4.0.2) pspell_config_create -- Create a config used to open a dictionary . int pspell_config_create ( string language [, string spelling [, string jargon [, string encoding]]]) . ... The language parameter is the language code which consists of the two letter ISO 639 language code and an optional two letter ISO 3166 country code after a dash or underscore. ... The mode parameter is the mode in which spellchecker will work. ... PSPELL_FAST - Fast mode (least number of suggestions) . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.pspell-config-create.html -- 6.2 Кб -- 03.02.2002
Похожие документы

1012. pspell_config_ignore
PHP Manual . Prev . Next . PHP 4 >= 4.0.2) pspell_config_ignore -- Ignore words less than N characters long . int pspell_config_ignore ( int dictionary_link, int n) . ... Words less then n characters will be skipped. Example 1. pspell_config_ignore() . pspell_config = pspell_config_create ("en"); pspell_config_ignore($pspell_config, 5); $pspell_link = pspell_new_config($pspell_config); pspell_check($pspell_link, "abcd"); //will not result in an error . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.pspell-config-ignore.html -- 4.2 Кб -- 03.02.2002
Похожие документы

1013. pspell_clear_session
PHP Manual . ... PHP 4 >= 4.0.2) pspell_clear_session -- Clear the current session . int pspell_clear_session ( int dictionary_link) . ... Example 1. pspell_add_to_personal() . pspell_config = pspell_config_create ("en"); pspell_config_personal ($pspell_config, "/var/dictionaries/custom.pws"); $pspell_link = pspell_new_config ($pspell_config); pspell_add_to_personal ($pspell_link, "Vlad"); pspell_clear_session ($pspell_link); pspell_save_wordlist ($pspell_link); //"Vlad" will not be saved . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.pspell-clear-session.html -- 4.2 Кб -- 03.02.2002
Похожие документы

1014. pspell_check
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.2) pspell_check -- Check a word . bool pspell_check ( int dictionary_link, string word) . pspell_check() checks the spelling of a word and returns TRUE if the spelling is correct, FALSE if not. Example 1. pspell_check() . $pspell_link = pspell_new ("en"); if (pspell_check ($pspell_link, "testt")) { echo "This is a valid spelling"; } else { echo "Sorry, wrong spelling"; } . Prev . Home . Next . pspell_add_to_session . Up . pspell_clear_session
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.pspell-check.html -- 4.0 Кб -- 03.02.2002
Похожие документы

1015. pspell_add_to_personal
PHP Manual . ... Next . PHP 4 >= 4.0.2) pspell_add_to_personal -- Add the word to a personal wordlist . int pspell_add_to_personal ( int dictionary_link, string word) . pspell_add_to_personal() adds a word to the personal wordlist. ... pspell_config = pspell_config_create ("en"); pspell_config_personal ($pspell_config, "/var/dictionaries/custom.pws"); $pspell_link = pspell_new_config ($pspell_config); pspell_add_to_personal ($pspell_link, "Vlad"); pspell_save_wordlist ($pspell_link); . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.pspell-add-to-personal.html -- 4.4 Кб -- 03.02.2002
Похожие документы

1016. pspell_add_to_session
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.2) pspell_add_to_session -- Add the word to the wordlist in the current session . int 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() . Prev . Home . Next . pspell_add_to_personal . Up . pspell_check
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.pspell-add-to-session.html -- 3.5 Кб -- 03.02.2002
Похожие документы

1017. printer_draw_bmp
PHP Manual . Prev . ... PHP 4 >= 4.0.6) printer_draw_bmp -- Draw a bmp . void printer_draw_bmp ( resource handle, string filename, int x, int y) . The function simply draws an bmp the bitmap filename at position x , y . ... Example 1. printer_draw_bmp() example . handle = printer_open(); printer_start_doc($handle, "My Document"); printer_start_page($handle); printer_draw_bmp($handle, "c:\\image.bmp", 1, 1); printer_end_page($handle); printer_end_doc($handle); printer_close($handle); . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.printer-draw-bmp.html -- 4.2 Кб -- 03.02.2002
Похожие документы

1018. Printer functions
... printer_open -- Open connection to a printer . printer_abort -- Deletes the printer's spool file . printer_close -- Close an open printer connection . ... printer_create_dc -- Create a new device context . ... printer_create_brush -- Create a new brush . printer_delete_brush -- Delete a brush . ... printer_create_font -- Create a new font . printer_delete_font -- Delete a font . ... printer_draw_roundrect -- Draw a rectangle with rounded corners . ... printer_draw_text -- Draw text . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/ref.printer.html -- 6.6 Кб -- 03.02.2002
Похожие документы

1019. printer_draw_pie
... PHP 4 >= 4.0.6) printer_draw_pie -- Draw a pie . ... The function simply draws an pie. handle must be a valid handle to a printer. rec_x is the upper left x coordinate of the bounding rectangle . rec_y is the upper left y coordinate of the bounding rectangle . rec_x1 is the lower right x coordinate of the bounding rectangle . rec_y1 is the lower right y coordinate of the bounding rectangle . rad1_x is x coordinate of the first radial's ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.printer-draw-pie.html -- 5.3 Кб -- 03.02.2002
Похожие документы

1020. printer_draw_chord
... PHP 4 >= 4.0.6) printer_draw_chord -- Draw a chord . ... The function simply draws an chord . handle must be a valid handle to a printer. rec_x is the upper left x coordinate of the bounding rectangle . rec_y is the upper left y coordinate of the bounding rectangle . rec_x1 is the lower right x coordinate of the bounding rectangle . rec_y1 is the lower right y coordinate of the bounding rectangle . rad_x is x coordinate of the radial ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.printer-draw-chord.html -- 5.3 Кб -- 03.02.2002
Похожие документы

В начало ] Пред. | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | След.В конец ]

Rambler's Top100 RFBR Яндекс цитирования