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

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

Упорядочить по: URL  |  дате изменения
981. preg_split
PHP Manual . ... 3.0.9 - 3.0.18 only, PHP 4 >= 4.0.0) preg_split -- Split string by a regular expression . array preg_split ( string pattern, string subject [, int limit [, int flags]]) . Note: Parameter flags was added in PHP 4 Beta 3. ... Example 1. preg_split() example : Get the parts of a search string. // split the phrase by any number of commas or space characters, // which include " ", \r, \t, \n and \f $keywords = preg_split ("/[\s,]+/", "hypertext language, programming"); . ...
[ Сохраненная копия ]  Ссылки http://old.hcs.cmc.msu.ru/php/function.preg-split.html -- 6.1 Кб -- 03.02.2002
Похожие документы

982. preg_quote
... 3.0.9 - 3.0.18 only, PHP 4 >= 4.0.0) preg_quote -- Quote regular expression characters . string preg_quote ( string str [, string delimiter]) . ... This is useful if you have a run-time string that you need to match in some text and the string may contain special regex characters. ... The special regular expression characters are: . Example 1. $keywords = "$40 for a g3/400"; $keywords = preg_quote ($keywords, "/"); echo $keywords; // returns \$40 for a g3\/400 . Example 2. ...
[ Сохраненная копия ]  Ссылки http://old.hcs.cmc.msu.ru/php/function.preg-quote.html -- 5.1 Кб -- 03.02.2002
Похожие документы

983. preg_replace
PHP Manual . ... 3.0.9 - 3.0.18 only, PHP 4 >= 4.0.0) preg_replace -- Perform a regular expression search and replace . mixed preg_replace ( mixed pattern, mixed replacement, mixed subject [, int limit]) . ... It will also convert some // common HTML entities to their text equivalent. $search = array ( ' script[^ ]*? .*? /script 'si , // Strip out javascript ' [\/\!]*?[^ ]*? 'si , // Strip out html tags '([\r\n])[\s]+' , // Strip out white space ' (quot|#34);'i , // Replace ...
[ Сохраненная копия ]  Ссылки http://old.hcs.cmc.msu.ru/php/function.preg-replace.html -- 9.7 Кб -- 03.02.2002
Похожие документы

984. preg_replace_callback
PHP Manual . Prev . Next . PHP 4 >= 4.0.5) preg_replace_callback -- Perform a regular expression search and replace using a callback . mixed preg_replace_callback ( mixed pattern, mixed callback, mixed subject [, int limit]) . The behavior of this function is almost identical to preg_replace() , except for the fact that instead of replacement parameter, one should specify a callback that will be called and passed an array of matched elements in the subject string. ...
[ Сохраненная копия ]  Ссылки http://old.hcs.cmc.msu.ru/php/function.preg-replace-callback.html -- 3.9 Кб -- 03.02.2002
Похожие документы

985. preg_match_all
... 3.0.9 - 3.0.18 only, PHP 4 >= 4.0.0) preg_match_all -- Perform a global regular expression match . int preg_match_all ( string pattern, string subject, array matches [, int order]) . Searches subject for all matches to the regular expression given in pattern and puts them in matches in the order specified by order . ... U", "<b>example: </b><div align=left>this is a test</div>", $out, PREG_PATTERN_ORDER); print $out[0][0].", ".$out[0][1]."\n"; print $out[1][0].", ".$out[1][1]."\n"; . ...
[ Сохраненная копия ]  Ссылки http://old.hcs.cmc.msu.ru/php/function.preg-match-all.html -- 8.7 Кб -- 03.02.2002
Похожие документы

986. preg_match
PHP Manual . ... 3.0.9 - 3.0.18 only, PHP 4 >= 4.0.0) preg_match -- Perform a regular expression match . int preg_match ( string pattern, string subject [, array matches]) . ... Example 1. ... the "i" after the pattern delimiter indicates a case-insensitive search if (preg_match ("/php/i", "PHP is the web scripting language of choice.")) { print "A match was found."; } else { print "A match was not found." ... domain name is: php.net See also preg_match_all() , preg_replace() , and preg_split() . ...
[ Сохраненная копия ]  Ссылки http://old.hcs.cmc.msu.ru/php/function.preg-match.html -- 6.4 Кб -- 03.02.2002
Похожие документы

987. GNU Recode functions
... This module contains an interface to the GNU Recode library, version 3.5. To be able to use the functions defined in this module you must compile you PHP interpreter using the --with-recode option. ... The GNU Recode library converts files between various coded character sets and surface encodings. ... The library recognises or produces nearly 150 different character sets and is able to convert files between almost any pair. ... recode_string -- Recode a string according to a recode request . ...
[ Сохраненная копия ]  Ссылки http://old.hcs.cmc.msu.ru/php/ref.recode.html -- 4.2 Кб -- 03.02.2002
Похожие документы

988. recode_file
... 3.0.13 - 3.0.18 only, PHP 4 >= 4.0.0) recode_file -- Recode from file to file according to recode request . bool recode_file ( string request, resource input, resource output) . Recode the file referenced by file handle input into the file referenced by file handle output according to the recode request . ... Example 1. Basic recode_file() example . input = fopen ('input.txt', 'r'); $output = fopen ('output.txt', 'w'); recode_file ("us..flat", $input, $output); . ... recode . ...
[ Сохраненная копия ]  Ссылки http://old.hcs.cmc.msu.ru/php/function.recode-file.html -- 4.3 Кб -- 03.02.2002
Похожие документы

989. recode
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.0) recode -- Recode a string according to a recode request . string recode ( string request, string string) . Note: This is an alias for recode_string() . It has been added in PHP 4. Prev . Home . Next . recode_string . Up . recode_file
[ Сохраненная копия ]  Ссылки http://old.hcs.cmc.msu.ru/php/function.recode.html -- 3.4 Кб -- 03.02.2002
Похожие документы

990. GNU Readline
... The readline() functions implement an interface to the GNU Readline library. These are functions that provide editable command lines. An example being the way Bash allows you to use the arrow keys to insert characters or scroll through command history. ... The home page of the GNU Readline project is http://cnswww.cns.cwru.edu/~chet/readline/rltop.html . ... readline -- Reads a line . readline_add_history -- Adds a line to the history . readline_clear_history -- Clears the history . ...
[ Сохраненная копия ]  Ссылки http://old.hcs.cmc.msu.ru/php/ref.readline.html -- 4.8 Кб -- 03.02.2002
Похожие документы

991. recode_string
PHP Manual . Prev . Next . 3.0.13 - 3.0.18 only, PHP 4 >= 4.0.0) recode_string -- Recode a string according to a recode request . string recode_string ( string request, string string) . Recode the string string according to the recode request request . Returns the recoded string or FALSE , if unable to perform the recode request. ... See also the GNU Recode documentation of your installation for detailed instructions about recode requests. ... Basic recode_string() example: . ...
[ Сохраненная копия ]  Ссылки http://old.hcs.cmc.msu.ru/php/function.recode-string.html -- 4.1 Кб -- 03.02.2002
Похожие документы

992. readline_list_history
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.0) readline_list_history -- Lists the history . array readline_list_history ( (void);) . This function returns an array of the entire command line history. The elements are indexed by integers starting at zero. Prev . Home . Next . readline_info . Up . readline_read_history
[ Сохраненная копия ]  Ссылки http://old.hcs.cmc.msu.ru/php/function.readline-list-history.html -- 3.4 Кб -- 03.02.2002
Похожие документы

993. readline_write_history
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.0) readline_write_history -- Writes the history . bool readline_write_history ( string filename) . This function writes the command history to a file. Prev . Home . Next . readline_read_history . Up . GNU Recode functions
[ Сохраненная копия ]  Ссылки http://old.hcs.cmc.msu.ru/php/function.readline-write-history.html -- 3.3 Кб -- 03.02.2002
Похожие документы

994. readline_read_history
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.0) readline_read_history -- Reads the history . bool readline_read_history ( string filename) . This function reads a command history from a file. Prev . Home . Next . readline_list_history . Up . readline_write_history
[ Сохраненная копия ]  Ссылки http://old.hcs.cmc.msu.ru/php/function.readline-read-history.html -- 3.3 Кб -- 03.02.2002
Похожие документы

995. readline_info
PHP Manual . Prev . Next . PHP 4 >= 4.0.0) readline_info -- Gets/sets various internal readline variables . mixed readline_info ( [string varname [, string newvalue]]) . If called with no parameters, this function returns an array of values for all the setting readline uses. ... If called with one parameter, the value of that setting is returned. If called with two parameters, the setting will be changed to the given value. ... readline_completion_function . ...
[ Сохраненная копия ]  Ссылки http://old.hcs.cmc.msu.ru/php/function.readline-info.html -- 3.8 Кб -- 03.02.2002
Похожие документы

996. readline_completion_function
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.0) readline_completion_function -- Registers a completion function . bool readline_completion_function ( string line) . This function registers a completion function. You must supply the name of an existing function which accepts a partial command line and returns an array of possible matches. This is the same kind of functionality you'd get if you hit your tab key while using Bash. Prev . Home . Next . readline_clear_history . Up . readline_info
[ Сохраненная копия ]  Ссылки http://old.hcs.cmc.msu.ru/php/function.readline-completion-function.html -- 3.6 Кб -- 03.02.2002
Похожие документы

997. readline_clear_history
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.0) readline_clear_history -- Clears the history . bool readline_clear_history ( (void);) . This function clears the entire command line history. Prev . Home . Next . readline_add_history . Up . readline_completion_function
[ Сохраненная копия ]  Ссылки http://old.hcs.cmc.msu.ru/php/function.readline-clear-history.html -- 3.4 Кб -- 03.02.2002
Похожие документы

998. readline_add_history
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.0) readline_add_history -- Adds a line to the history . void readline_add_history ( string line) . This function adds a line to the command line history. Prev . Home . Next . readline . Up . readline_clear_history
[ Сохраненная копия ]  Ссылки http://old.hcs.cmc.msu.ru/php/function.readline-add-history.html -- 3.3 Кб -- 03.02.2002
Похожие документы

999. readline
PHP Manual . Prev . Next . PHP 4 >= 4.0.0) readline -- Reads a line . string readline ( [string prompt]) . This function returns a single string from the user. ... You must add this line to the history yourself using readline_add_history() . ... get 3 commands from user for ($i=0; $i < 3; $i++) { $line = readline ("Command: "); readline_add_history ($line); } //dump history print_r (readline_list_history()); //dump variables print_r (readline_info()); . ... readline_add_history ...
[ Сохраненная копия ]  Ссылки http://old.hcs.cmc.msu.ru/php/function.readline.html -- 4.0 Кб -- 03.02.2002
Похожие документы

1000. 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.hcs.cmc.msu.ru/php/function.pspell-suggest.html -- 3.9 Кб -- 03.02.2002
Похожие документы

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

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