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

В начало ] Пред. | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | След.В конец ]

Упорядочить по: URL  |  дате изменения
3081. bcscale
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) bcscale -- Set default scale parameter for all bc math functions . string bcscale ( int scale) . This function sets the default scale parameter for all subsequent bc math functions that do not explicitly specify a scale parameter. Prev . Home . Next . bcpow . Up . bcsqrt
[ Сохраненная копия ]  Ссылки http://old.hcs.cmc.msu.ru/php/function.bcscale.html -- 3.3 Кб -- 03.02.2002
Похожие документы

3082. bcsqrt
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) bcsqrt -- Get the square root of an arbitrary precision number . string bcsqrt ( string operand [, int scale]) . Return the square root of the operand . The optional scale parameter sets the number of digits after the decimal place in the result. See also bcpow() . Prev . Home . Next . bcscale . Up . bcsub
[ Сохраненная копия ]  Ссылки http://old.hcs.cmc.msu.ru/php/function.bcsqrt.html -- 3.5 Кб -- 03.02.2002
Похожие документы

3083. bcmod
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) bcmod -- Get modulus of an arbitrary precision number . string bcmod ( string left_operand, string modulus) . Get the modulus of the left_operand using modulus . See also bcdiv() . Prev . Home . Next . bcdiv . Up . bcmul
[ Сохраненная копия ]  Ссылки http://old.hcs.cmc.msu.ru/php/function.bcmod.html -- 3.4 Кб -- 03.02.2002
Похожие документы

3084. bcmul
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) bcmul -- Multiply two arbitrary precision number . string bcmul ( string left_operand, string right_operand [, int scale]) . Multiply the left_operand by the right_operand and returns the result. The optional scale sets the number of digits after the decimal place in the result. See also bcdiv() . Prev . Home . Next . bcmod . Up . bcpow
[ Сохраненная копия ]  Ссылки http://old.hcs.cmc.msu.ru/php/function.bcmul.html -- 3.5 Кб -- 03.02.2002
Похожие документы

3085. bccomp
PHP Manual . Prev . Next . PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) bccomp -- Compare two arbitrary precision numbers . int bccomp ( string left_operand, string right_operand [, int scale]) . Compares the left_operand to the right_operand and returns the result as an integer. ... The return value is 0 if the two operands are equal. If the left_operand is larger than the right_operand the return value is +1 and if the left_operand is less than the right_operand the return value is -1. ...
[ Сохраненная копия ]  Ссылки http://old.hcs.cmc.msu.ru/php/function.bccomp.html -- 3.9 Кб -- 03.02.2002
Похожие документы

3086. bcdiv
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) bcdiv -- Divide two arbitrary precision numbers . string bcdiv ( string left_operand, string right_operand [, int scale]) . Divides the left_operand by the right_operand and returns the result. The optional scale sets the number of digits after the decimal place in the result. See also bcmul() . Prev . Home . Next . bccomp . Up . bcmod
[ Сохраненная копия ]  Ссылки http://old.hcs.cmc.msu.ru/php/function.bcdiv.html -- 3.5 Кб -- 03.02.2002
Похожие документы

3087. bcadd
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) bcadd -- Add two arbitrary precision numbers . string bcadd ( string left_operand, string right_operand [, int scale]) . Adds the left_operand to the right_operand and returns the sum in a string. The optional scale parameter is used to set the number of digits after the decimal place in the result. See also bcsub() . Prev . Home . Next . BCMath Arbitrary Precision Mathematics Functions . Up . bccomp
[ Сохраненная копия ]  Ссылки http://old.hcs.cmc.msu.ru/php/function.bcadd.html -- 3.6 Кб -- 03.02.2002
Похожие документы

3088. aspell_suggest
PHP Manual . Prev . ... 3.0.7 - 3.0.18 only, PHP 4 >= 4.0.0) aspell_suggest -- Suggest spellings of a word [deprecated] . array aspell_suggest ( int dictionary_link, string word) . aspell_suggest() returns an array of possible spellings for the given word. ... aspell_link = aspell_new("english"); if (!aspell_check($aspell_link, "test")) { $suggestions = aspell_suggest($aspell_link, "test"); foreach ($suggestions as $suggestion) { echo "Possible spelling: $suggestion<br>\n"; } } . ...
[ Сохраненная копия ]  Ссылки http://old.hcs.cmc.msu.ru/php/function.aspell-suggest.html -- 4.0 Кб -- 03.02.2002
Похожие документы

3089. Aspell functions [deprecated]
PHP Manual . ... Next . The aspell() functions allows you to check the spelling on a word and offer suggestions. Note: aspell works only with very old (up to .27.* or so) versions of aspell library. Neither this module, nor those versions of aspell library are supported any longer. ... aspell_new -- Load a new dictionary [deprecated] . aspell_check -- Check a word [deprecated] . aspell_check_raw -- Check a word without changing its case or trying to trim it [deprecated] . ...
[ Сохраненная копия ]  Ссылки http://old.hcs.cmc.msu.ru/php/ref.aspell.html -- 4.3 Кб -- 03.02.2002
Похожие документы

3090. aspell_check_raw
PHP Manual . Prev . Next . 3.0.7 - 3.0.18 only, PHP 4 >= 4.0.0) aspell_check_raw -- Check a word without changing its case or trying to trim it [deprecated] . ... aspell_check_raw() checks the spelling of a word, without changing its case or trying to trim it in any way and returns TRUE if the spelling is correct, FALSE if not. ... aspell_link = aspell_new("english"); if (aspell_check_raw($aspell_link, "test")) { echo "This is a valid spelling"; } else { echo "Sorry, wrong spelling"; } . ...
[ Сохраненная копия ]  Ссылки http://old.hcs.cmc.msu.ru/php/function.aspell-check-raw.html -- 4.1 Кб -- 03.02.2002
Похожие документы

3091. aspell_check
. PHP Manual . Prev . Next . (3.0.7 - 3.0.18 only, PHP 4 >= 4.0.0) aspell_check -- Check a word [deprecated] . bool aspell_check ( int dictionary_link, string word) . aspell_check() checks the spelling of a word and returns TRUE if the spelling is correct, FALSE if not. Example 1. aspell_check() . $aspell_link = aspell_new("english"); if (aspell_check($aspell_link, "testt")) { echo "This is a valid spelling"; } else { echo "Sorry, wrong spelling"; } . Prev . Home . Next . aspell_new . Up . aspell_check_raw
[ Сохраненная копия ]  Ссылки http://old.hcs.cmc.msu.ru/php/function.aspell-check.html -- 3.9 Кб -- 03.02.2002
Похожие документы

3092. aspell_new
. PHP Manual . Prev . Next . (3.0.7 - 3.0.18 only, PHP 4 >= 4.0.0) aspell_new -- Load a new dictionary [deprecated] . int aspell_new ( string master [, string personal]) . aspell_new() opens up a new dictionary and returns the dictionary link identifier for use in other aspell functions. Returns FALSE on error. Example 1. aspell_new() . $aspell_link = aspell_new("english"); . Prev . Home . Next . Aspell functions [deprecated] . Up . aspell_check
[ Сохраненная копия ]  Ссылки http://old.hcs.cmc.msu.ru/php/function.aspell-new.html -- 3.8 Кб -- 03.02.2002
Похожие документы

3093. usort
... 3.0.3 - 3.0.18 only, PHP 4 >= 4.0.0) usort -- Sort an array by values using a user-defined comparison function . void usort ( array array, string cmp_function) . ... Example 1. usort() example . ... function cmp ($a, $b) { return strcmp($a["fruit"], $b["fruit"]); } $fruits[0]["fruit"] = "lemons"; $fruits[1]["fruit"] = "apples"; $fruits[2]["fruit"] = "grapes"; usort($fruits, "cmp"); while (list ($key, $value) = each ($fruits)) { echo "\$fruits[$key]: " . value["fruit"] . ...
[ Сохраненная копия ]  Ссылки http://old.hcs.cmc.msu.ru/php/function.usort.html -- 8.1 Кб -- 03.02.2002
Похожие документы

3094. Array Functions
... These functions allow you to interact with and manipulate arrays in various ways. ... There are specific database handling functions for populating arrays from database queries, and several functions return arrays. ... array_change_key_case -- Returns an array with all string keys lowercased or uppercased . ... array_filter -- Filters elements of an array using a callback function . ... ksort -- Sort an array by key . ... usort -- Sort an array by values using a user-defined comparison function . ...
[ Сохраненная копия ]  Ссылки http://old.hcs.cmc.msu.ru/php/ref.array.html -- 11.0 Кб -- 03.02.2002
Похожие документы

3095. uksort
... 3.0.4 - 3.0.18 only, PHP 4 >= 4.0.0) uksort -- Sort an array by keys using a user-defined comparison function . void uksort ( array array, function cmp_function) . This function will sort the keys of an array using a user-supplied comparison function. ... Example 1. uksort() example . ... 1 : 1; } $a = array (4 => "four", 3 => "three", 20 => "twenty", 10 => "ten"); uksort ($a, "cmp"); while (list ($key, $value) = each ($a)) { echo "$key: $value\n"; } . This example would display: . ...
[ Сохраненная копия ]  Ссылки http://old.hcs.cmc.msu.ru/php/function.uksort.html -- 5.0 Кб -- 03.02.2002
Похожие документы

3096. uasort
... Next . 3.0.4 - 3.0.18 only, PHP 4 >= 4.0.0) uasort -- Sort an array with a user-defined comparison function and maintain index association . ... This function sorts an array such that array indices maintain their correlation with the array elements they are associated with. ... Note: Please see usort() and uksort() for examples of user-defined comparison functions. Note: Instead of a function name, an array containing an object reference and a method name can also be supplied. ... sort . ...
[ Сохраненная копия ]  Ссылки http://old.hcs.cmc.msu.ru/php/function.uasort.html -- 4.5 Кб -- 03.02.2002
Похожие документы

3097. sort
PHP Manual . ... PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) sort -- Sort an array . ... This function sorts an array. ... Example 1. sort() example . php $fruits = array ("lemon", "orange", "banana", "apple"); sort ($fruits); reset ($fruits); while (list ($key, $val) = each ($fruits)) { echo "fruits[".$key."] = ".$val."\n"; } ?> ... fruits[0] = apple fruits[1] = banana fruits[2] = lemon fruits[3] = orange . ... SORT_REGULAR - compare items normally . SORT_NUMERIC - compare items numerically . ...
[ Сохраненная копия ]  Ссылки http://old.hcs.cmc.msu.ru/php/function.sort.html -- 5.3 Кб -- 03.02.2002
Похожие документы

3098. shuffle
PHP Manual . Prev . Next . 3.0.8 - 3.0.18 only, PHP 4 >= 4.0.0) shuffle -- Shuffle an array . void shuffle ( array array) . This function shuffles (randomizes the order of the elements in) an array. ... Example 1. shuffle() example . numbers = range (1,20); srand ((float)microtime()*1000000); shuffle ($numbers); while (list (, $number) = each ($numbers)) { echo "$number "; } . See also arsort() , asort() , ksort() , rsort() , sort() , and usort() . ... rsort . ...
[ Сохраненная копия ]  Ссылки http://old.hcs.cmc.msu.ru/php/function.shuffle.html -- 4.2 Кб -- 03.02.2002
Похожие документы

3099. sizeof
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) sizeof -- Get the number of elements in variable . int sizeof ( mixed var) . The sizeof() function is an alias for count() . See also count() . Prev . Home . Next . shuffle . Up . sort
[ Сохраненная копия ]  Ссылки http://old.hcs.cmc.msu.ru/php/function.sizeof.html -- 3.3 Кб -- 03.02.2002
Похожие документы

3100. rsort
PHP Manual . ... PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) rsort -- Sort an array in reverse order . void rsort ( array array [, int sort_flags]) . This function sorts an array in reverse order (highest to lowest). Example 1. rsort() example . fruits = array ("lemon", "orange", "banana", "apple"); rsort ($fruits); reset ($fruits); while (list ($key, $val) = each ($fruits)) { echo "$key = $val\n"; } . ... The fruits have been sorted in reverse alphabetical order. ...
[ Сохраненная копия ]  Ссылки http://old.hcs.cmc.msu.ru/php/function.rsort.html -- 4.6 Кб -- 03.02.2002
Похожие документы

В начало ] Пред. | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | След.В конец ]

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