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

В начало ] Пред. | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | След.В конец ]

Упорядочить по: URL  |  дате изменения
2041. sin
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) sin -- Sine . float sin ( float arg) . Returns the sine of arg in radians. See also cos() and tan() . Prev . Home . Next . round . Up . sinh
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.sin.html -- 3.2 Кб -- 03.02.2002
Похожие документы

2042. sinh
. PHP Manual . Prev . Next . (PHP 4 >= 4.1.0) sinh -- Hyperbolic sine . float sinh ( float arg) . Returns the hyperbolic sine of arg , defined as (exp(arg) - exp(-arg))/2 . See also sin() , asinh() , cos() and tan() . Prev . Home . Next . sin . Up . sqrt
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.sinh.html -- 3.5 Кб -- 03.02.2002
Похожие документы

2043. rand
PHP Manual . ... Next . PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) rand -- Generate a random value . int rand ( (void);)int rand ( int min, int max) . If called without the optional min , max arguments rand() returns a pseudo-random value between 0 and RAND_MAX . If you want a random number between 5 and 15 (inclusive), for example, use rand (5, 15) . ... To get the same results in these versions the short example should be rand (5, 11) to get a random number between 5 and 15. ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.rand.html -- 4.5 Кб -- 03.02.2002
Похожие документы

2044. round
... PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) round -- Rounds a float . float round ( float val [, int precision]) . Returns the rounded value of val to specified precision (number of digits after the decimal point). precision can also be negative or zero (default). ... foo = round(3.4); // $foo == 3.0 $foo = round(3.5); // $foo == 4.0 $foo = round(3.6); // $foo == 4.0 $foo = round(3.6, 0); // equivalent with above $foo = round(1.95583, 2); // $foo == 1.96 $foo = round(1241757, -3); // $foo == 1242000 . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.round.html -- 4.6 Кб -- 03.02.2002
Похожие документы

2045. rad2deg
. PHP Manual . Prev . Next . (3.0.4 - 3.0.18 only, PHP 4 >= 4.0.0) rad2deg -- Converts the radian number to the equivalent number in degrees . float rad2deg ( float number) . This function converts number from radian to degrees. See also deg2rad() . Prev . Home . Next . pow . Up . rand
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.rad2deg.html -- 3.3 Кб -- 03.02.2002
Похожие документы

2046. pi
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) pi -- Get value of pi . float pi ( (void);) . Returns an approximation of pi. The returned float has a precision based on the precision directive in php.ini , which defaults to 14 . Also, you can use the M_PI constant which yields identical results to pi() . echo pi(); // 3.1415926535898 echo M_PI; // 3.1415926535898 . Prev . Home . Next . octdec . Up . pow
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.pi.html -- 3.8 Кб -- 03.02.2002
Похожие документы

2047. pow
PHP Manual . Prev . Next . PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) pow -- Exponential expression . number pow ( number base, number exp) . Returns base raised to the power of exp . ... If the power cannot be computed, a warning will be issued, and pow() will return FALSE . ... php var_dump( pow(2,8) ); // int(256) echo pow(-1,20); // 1 echo pow(0, 0); // 1 echo pow(-1, 5.5); // error ?> ... In PHP 4.0.6 and earlier pow() always returned a float , and did not issue warnings. ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.pow.html -- 4.5 Кб -- 03.02.2002
Похожие документы

2048. number_format
... PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) number_format -- Format a number with grouped thousands . string number_format ( float number [, int decimals [, string dec_point [, string thousands_sep]]]) . number_format() returns a formatted version of number . ... If only one parameter is given, Number will be formatted without decimals, but with a comma (",") between every group of thousands. ... For example, if you use foo as thousands_sep on the number 1000 , number_format() will return 1f000 . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.number-format.html -- 6.0 Кб -- 03.02.2002
Похожие документы

2049. octdec
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) octdec -- Octal to decimal . int octdec ( string octal_string) . Returns the decimal equivalent of the octal number represented by the octal_string argument. The largest number that can be converted is 17777777777 or 2147483647 in decimal. See also decoct() . Prev . Home . Next . number_format . Up . pi
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.octdec.html -- 3.4 Кб -- 03.02.2002
Похожие документы

2050. mt_getrandmax
. PHP Manual . Prev . Next . (3.0.6 - 3.0.18 only, PHP 4 >= 4.0.0) mt_getrandmax -- Show largest possible random value . int mt_getrandmax ( (void);) . Returns the maximum value that can be returned by a call to mt_rand() . See also mt_rand() , mt_srand() , rand() , srand() , and getrandmax() . Prev . Home . Next . mt_srand . Up . number_format
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.mt-getrandmax.html -- 3.7 Кб -- 03.02.2002
Похожие документы

2051. mt_srand
PHP Manual . ... Next . 3.0.6 - 3.0.18 only, PHP 4 >= 4.0.0) mt_srand -- Seed the better random number generator . void mt_srand ( int seed) . Seeds the random number generator with seed . seed with microseconds function make_seed() { list($usec, $sec) = explode(' ', microtime()); return (float) $sec + ((float) $usec * 100000); } mt_srand(make_seed()); $randval = mt_rand(); . See also mt_rand() , mt_getrandmax() , srand() , rand() , and getrandmax() . ... mt_rand . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.mt-srand.html -- 4.0 Кб -- 03.02.2002
Похожие документы

2052. mt_rand
PHP Manual . ... 3.0.6 - 3.0.18 only, PHP 4 >= 4.0.0) mt_rand -- Generate a better random value . int mt_rand ( (void);)int mt_rand ( int min, int max) . Many random number generators of older libcs have dubious or unknown characteristics and are slow. By default, PHP uses the libc random number generator with the rand() function. mt_rand() function is a drop-in replacement for this. ... Remember to seed the random number generator before use with mt_srand() . ... min . ... mt_srand ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.mt-rand.html -- 5.5 Кб -- 03.02.2002
Похожие документы

2053. max
PHP Manual . ... PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) max -- Find highest value . mixed max ( mixed arg1, mixed arg2, mixed argn) . max() returns the numerically highest of the parameter values. If the first parameter is an array, max() returns the highest value in that array. If the first parameter is an integer, string or float, you need at least two parameters and max() returns the biggest of these values. You can compare an unlimited number of values. ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.max.html -- 3.8 Кб -- 03.02.2002
Похожие документы

2054. min
... PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) min -- Find lowest value . number min ( number arg1, number arg2 [, ...])number min ( array numbers) . min() returns the numerically lowest of the parameter values. ... In the second variant, min() returns the lowest value in numbers . If one or more of the values is a float , all the values will be treated as floats, and a float is returned. If none of the values is a float, all of them will be treated as integer s, and an integer is returned. ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.min.html -- 4.0 Кб -- 03.02.2002
Похожие документы

2055. log
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) log -- Natural logarithm . float log ( float arg) . Returns the natural logarithm of arg. Prev . Home . Next . lcg_value . Up . log10
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.log.html -- 3.1 Кб -- 03.02.2002
Похожие документы

2056. log10
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) log10 -- Base-10 logarithm . float log10 ( float arg) . Returns the base-10 logarithm of arg . Prev . Home . Next . log . Up . log1p
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.log10.html -- 3.1 Кб -- 03.02.2002
Похожие документы

2057. log1p
PHP Manual . Prev . Next . PHP 4 >= 4.1.0) log1p -- Returns log(1 + number), computed in a way that accurate even when the val ue of number is close to zero . float log1p ( float number) . Warning . This function is EXPERIMENTAL . The behaviour of this function, the name of this function, and anything else documented about this function may change in a future release of PHP without notice. ... This function is currently not documented, only the argument list is available. ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.log1p.html -- 3.9 Кб -- 03.02.2002
Похожие документы

2058. hypot
PHP Manual . Prev . Next . PHP 4 >= 4.1.0) hypot -- Returns sqrt( num1*num1 + num2*num2) . float hypot ( float num1, float num2) . Warning . This function is EXPERIMENTAL . The behaviour of this function, the name of this function, and anything else documented about this function may change in a future release of PHP without notice. Be warned and use this function at your own risk. ... This function is currently not documented, only the argument list is available. ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.hypot.html -- 3.8 Кб -- 03.02.2002
Похожие документы

2059. lcg_value
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.0) lcg_value -- Combined linear congruential generator . float lcg_value ( (void);) . lcg_value() returns a pseudo random number in the range of (0, 1). The function combines two CGs with periods of 2^31 - 85 and 2^31 - 249. The period of this function is equal to the product of both primes. Prev . Home . Next . hypot . Up . log
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.lcg-value.html -- 3.3 Кб -- 03.02.2002
Похожие документы

2060. getrandmax
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) getrandmax -- Show largest possible random value . int getrandmax ( (void);) . Returns the maximum value that can be returned by a call to rand() . See also rand() , srand() , mt_rand() , mt_srand() , and mt_getrandmax() . Prev . Home . Next . floor . Up . hexdec
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.getrandmax.html -- 3.6 Кб -- 03.02.2002
Похожие документы

В начало ] Пред. | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | След.В конец ]

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