Поиск по:old.master.cmc.msu.ru -
Поискать по всем серверам
На этой странице приведены все страницы сервера old.master.cmc.msu.ru ,которые мы индексируем. Показаны документы 2521 - 2540 из 3519.
Упорядочить по:
URL
|
дате изменения
2521. gmp_div_qr
... PHP 4 >= 4.0.4) gmp_div_qr -- Divide numbers and get quotient and remainder . array gmp_div_qr ( resource n, resource d [, int round]) . The function divides n by d and returns array, with the first element being [n/d] (the integer result of the division) and the second being (n - [n/d] * d) (the remainder of the division). ... php $a = gmp_init ("0x41682179fbf5"); $res = gmp_div_qr ($a, "0xDEFE75"); printf("Result is: q - %s, r - %s", gmp_strval ($res[0]), gmp_strval ($res[1])); ?> ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.gmp-div-qr.html -- 4.4 Кб -- 03.02.2002
Похожие документы
Похожие документы
2522. gmp_div_q
PHP Manual . Prev . Next . PHP 4 >= 4.0.4) gmp_div_q -- Divide numbers . resource gmp_div_q ( resource a, resource b [, int round]) . Divides a by b and returns the integer result. ... GMP_ROUND_ZERO : The result is truncated towards 0. GMP_ROUND_PLUSINF : The result is rounded towards +infinity . GMP_ROUND_MINUSINF : The result is rounded towards -infinity . ... See also gmp_div_r() , gmp_div_qr() . ... gmp_div_r ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.gmp-div-q.html -- 4.2 Кб -- 03.02.2002
Похожие документы
Похожие документы
2523. gmp_div_r
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.4) gmp_div_r -- Remainder of the division of numbers . resource gmp_div_r ( resource n, resource d [, int round]) . Calculates remainder of the integer division of n by d . The remainder has the sign of the n argument, if not zero. See the gmp_div_q() function for description of the round argument. See also gmp_div_q() , gmp_div_qr() . Prev . Home . Next . gmp_div_q . Up . gmp_div_qr
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.gmp-div-r.html -- 3.8 Кб -- 03.02.2002
Похожие документы
Похожие документы
2524. gmp_mul
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.4) gmp_mul -- Multiply numbers . resource gmp_mul ( resource a, resource b) . Multiplies a by b and returns the result. Prev . Home . Next . gmp_sub . Up . gmp_div_q
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.gmp-mul.html -- 3.2 Кб -- 03.02.2002
Похожие документы
Похожие документы
2525. gmp_sub
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.4) gmp_sub -- Subtract numbers . resource gmp_sub ( resource a, resource b) . Subtracts b from a and returns the result. Prev . Home . Next . gmp_add . Up . gmp_mul
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.gmp-sub.html -- 3.2 Кб -- 03.02.2002
Похожие документы
Похожие документы
2526. gmp_add
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.4) gmp_add -- Add numbers . resource gmp_add ( resource a, resource b) . Add two GMP numbers. The result will be a GMP number representing the sum of the arguments. Prev . Home . Next . gmp_strval . Up . gmp_sub
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.gmp-add.html -- 3.2 Кб -- 03.02.2002
Похожие документы
Похожие документы
2527. gmp_intval
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.4) gmp_intval -- Convert GMP number to integer . int gmp_intval ( resource gmpnumber) . This function allows to convert GMP number to integer. Warning . This function returns a useful result only if the number actually fits the PHP integer (i.e., signed long type). If you want just to print the GMP number, use gmp_strval() . Prev . Home . Next . gmp_init . Up . gmp_strval
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.gmp-intval.html -- 3.6 Кб -- 03.02.2002
Похожие документы
Похожие документы
2528. gmp_strval
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.4) gmp_strval -- Convert GMP number to string . string gmp_strval ( resource gmpnumber [, int base]) . Convert GMP number to string representation in base base . The default base is 10. Allowed values for the base are from 2 to 36. Example 1. Converting a GMP number to a string . <?php $a = gmp_init("0x41682179fbf5"); printf ("Decimal: %s, 36-based: %s", gmp_strval($a), gmp_strval($a,36)); ?> . Prev . Home . Next . gmp_intval . Up . gmp_add
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.gmp-strval.html -- 3.8 Кб -- 03.02.2002
Похожие документы
Похожие документы
2529. gmp_init
PHP Manual . Prev . Next . PHP 4 >= 4.0.4) gmp_init -- Create GMP number . resource gmp_init ( mixed number) . Creates a GMP number from an integer or string. ... Note: It is not necessary to call this function if you want to use integer or string in place of GMP number in GMP functions, like gmp_add() . Function arguments are automatically converted to GMP numbers, if such conversion is possible and needed, using the same rules as gmp_init() . ... GMP functions . ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.gmp-init.html -- 4.2 Кб -- 03.02.2002
Похожие документы
Похожие документы
2530. textdomain
. PHP Manual . Prev . Next . (3.0.7 - 3.0.18 only, PHP 4 >= 4.0.0) textdomain -- Sets the default domain . string textdomain ( string text_domain) . This function sets the domain to search within when calls are made to gettext() , usually the named after an application. The previous default domain is returned. Call it with NULL as parameter to get the current setting without changing it. Prev . Home . Next . ngettext . Up . GMP functions
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.textdomain.html -- 3.5 Кб -- 03.02.2002
Похожие документы
Похожие документы
2531. Gettext
... The gettext functions implement a NLS (Native Language Support) API which can be used to internationalize your PHP applications. ... bindtextdomain -- Sets the path for a domain . ... dcgettext -- Overrides the domain for a single lookup . dcngettext -- Plural version of dcgettext() Plural version of dcgettext . dgettext -- Override the current domain . dcngettext -- Plural version of dcgettext() Plural version of dgettext . gettext -- Lookup a message in the current domain . ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/ref.gettext.html -- 4.4 Кб -- 03.02.2002
Похожие документы
Похожие документы
2532. gettext
PHP Manual . Prev . ... 3.0.7 - 3.0.18 only, PHP 4 >= 4.0.0) gettext -- Lookup a message in the current domain . ... This function returns a translated string if one is found in the translation table, or the submitted message if not found. ... php // Set language to German putenv ("LANG=de"); // Specify location of translation tables bindtextdomain ("myPHPApp", "./locale"); // Choose domain textdomain ("myPHPApp"); // Print a test message print (gettext ("Welcome to My PHP Application")); ?> ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.gettext.html -- 3.9 Кб -- 03.02.2002
Похожие документы
Похожие документы
2533. ngettext
. PHP Manual . Prev . Next . (PHP 4 CVS only) ngettext -- Plural version of gettext . string ngettext ( string msgid1, string msgid2, int n) . Warning . This function is currently not documented, only the argument list is available. Prev . Home . Next . gettext . Up . textdomain
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.ngettext.html -- 3.4 Кб -- 03.02.2002
Похожие документы
Похожие документы
2534. dgettext
. PHP Manual . Prev . Next . (3.0.7 - 3.0.18 only, PHP 4 >= 4.0.0) dgettext -- Override the current domain . string dgettext ( string domain, string message) . The dgettext() function allows you to override the current domain for a single message lookup. Prev . Home . Next . dcngettext . Up . dcngettext
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.dgettext.html -- 3.3 Кб -- 03.02.2002
Похожие документы
Похожие документы
2535. dcngettext
. PHP Manual . Prev . Next . (PHP 4 CVS only) dcngettext -- Plural version of dcgettext() Plural version of dgettext . string dcngettext ( string domain, string msgid1, string msgid2, int n) . Warning . This function is currently not documented, only the argument list is available. Prev . Home . Next . dgettext . Up . gettext
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.dngettext.html -- 3.4 Кб -- 03.02.2002
Похожие документы
Похожие документы
2536. bind_textdomain_codeset
. PHP Manual . Prev . Next . (PHP 4 CVS only) bind_textdomain_codeset -- Specify the character encoding in which the messages from the DOMAIN message catalog will be re turned . string bind_textdomain_codeset ( string domain, string codeset) . Warning . This function is currently not documented, only the argument list is available. Prev . Home . Next . bindtextdomain . Up . dcgettext
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.bind-textdomain-codeset.html -- 3.6 Кб -- 03.02.2002
Похожие документы
Похожие документы
2537. dcgettext
. PHP Manual . Prev . Next . (3.0.7 - 3.0.18 only, PHP 4 >= 4.0.0) dcgettext -- Overrides the domain for a single lookup . string dcgettext ( string domain, string message, int category) . This function allows you to override the current domain for a single message lookup. It also allows you to specify a category. Prev . Home . Next . bind_textdomain_codeset . Up . dcngettext
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.dcgettext.html -- 3.4 Кб -- 03.02.2002
Похожие документы
Похожие документы
2538. dcngettext
. PHP Manual . Prev . Next . (PHP 4 CVS only) dcngettext -- Plural version of dcgettext() Plural version of dcgettext . string dcngettext ( string domain, string msgid1, string msgid2, int n, int category) . Warning . This function is currently not documented, only the argument list is available. Prev . Home . Next . dcgettext . Up . dgettext
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.dcngettext.html -- 3.4 Кб -- 03.02.2002
Похожие документы
Похожие документы
2539. bindtextdomain
. PHP Manual . Prev . Next . (3.0.7 - 3.0.18 only, PHP 4 >= 4.0.0) bindtextdomain -- Sets the path for a domain . string bindtextdomain ( string domain, string directory) . The bindtextdomain() function sets the path for a domain. Prev . Home . Next . Gettext . Up . bind_textdomain_codeset
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.bindtextdomain.html -- 3.3 Кб -- 03.02.2002
Похожие документы
Похожие документы
2540. unregister_tick_function
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.3) unregister_tick_function -- De-register a function for execution on each tick . void unregister_tick_function ( string func [, mixed arg]) . De-registers the function named by func so it is no longer executed when a tick is called. Prev . Home . Next . register_tick_function . Up . Gettext
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.unregister-tick-function.html -- 3.5 Кб -- 03.02.2002
Похожие документы
Похожие документы