Поиск по:old.master.cmc.msu.ru -
Поискать по всем серверам
На этой странице приведены все страницы сервера old.master.cmc.msu.ru ,которые мы индексируем. Показаны документы 2021 - 2040 из 3519.
Упорядочить по:
URL
|
дате изменения
2021. mb_strwidth
PHP Manual . Prev . Next . PHP 4 >= 4.0.6) mb_strwidth -- Return width of string . int mb_strwidth ( string str [, string encoding]) . mb_strwidth() returns width of string str . Multi-byte character usually twice of width compare to single byte character. Character width U+0000 - U+0019 0 U+0020 - U+1FFF 1 U+2000 - U+FF60 2 U+FF61 - U+FF9F 1 U+FFA0 - 2 . encoding is character encoding. ... See also: mb_strimwidth() , mb_internal_encoding() . ... mb_strimwidth ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.mb-strwidth.html -- 4.1 Кб -- 03.02.2002
Похожие документы
Похожие документы
2022. mb_strcut
... PHP 4 >= 4.0.6) mb_strcut -- Get part of string . string mb_strcut ( string str, int start [, int length [, string encoding]]) . ... If start position is multi-byte character's second byte or larger, it starts from first byte of multi-byte character. It subtracts string from str that is shorter than length AND character that is not part of multi-byte string or not being middle of shift sequence. encoding is character encoding. If it is not set, internal character encoding is used. ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.mb-strcut.html -- 4.4 Кб -- 03.02.2002
Похожие документы
Похожие документы
2023. mb_substr
... PHP 4 >= 4.0.6) mb_substr -- Get part of string . string mb_substr ( string str, int start [, int length [, string encoding]]) . mb_substr() returns the portion of str specified by the start and length parameters. mb_substr() performs multi-byte safe substr() operation based on number of characters. Position is counted from the beginning of str . ... If encoding is omitted, internal encoding is assumed. encoding is character encoding. ... See also mb_strcut() , mb_internal_encoding() . ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.mb-substr.html -- 4.3 Кб -- 03.02.2002
Похожие документы
Похожие документы
2024. mb_strpos
... PHP 4 >= 4.0.6) mb_strpos -- Find position of first occurrence of string in a string . int mb_strpos ( string haystack, string needle [, int offset [, string encoding]]) . ... mb_strpos() performs multi-byte safe strpos() operation based on number of characters. needle position is counted from the beginning of the haystack . ... If encoding is omitted, internal character encoding is used. mb_strrpos() accepts string for needle where strrpos() accepts only character. offset is search offset. ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.mb-strpos.html -- 4.9 Кб -- 03.02.2002
Похожие документы
Похожие документы
2025. mb_strrpos
... PHP 4 >= 4.0.6) mb_strrpos -- Find position of last occurrence of a string in a string . int mb_strrpos ( string haystack, string needle [, string encoding]) . ... mb_strrpos() performs multi-byte safe strrpos() operation based on number of characters. needle position is counted from the beginning of haystack . ... If encoding is omitted, internal encoding is assumed. mb_strrpos() accepts string for needle where strrpos() accepts only character. encoding is character encoding. ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.mb-strrpos.html -- 4.7 Кб -- 03.02.2002
Похожие документы
Похожие документы
2026. mb_strlen
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.6) mb_strlen -- Get string length . string mb_strlen ( string str [, string encoding]) . mb_strlen() returns number of characters in string str having character encoding encoding . A multi-byte character is counted as 1. encoding is character encoding for str . If encoding is omitted, internal character encoding is used. See also mb_internal_encoding() , strlen() . Prev . Home . Next . mb_preferred_mime_name . Up . mb_strpos
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.mb-strlen.html -- 3.9 Кб -- 03.02.2002
Похожие документы
Похожие документы
2027. mb_output_handler
PHP Manual . ... PHP 4 >= 4.0.6) mb_output_handler -- Callback function converts character encoding in output buffer . string mb_output_handler ( string contents, int status) . mb_output_handler() is ob_start() callback function. mb_output_handler() converts characters in output buffer from internal character encoding to HTTP output character encoding. 4.1.0 or later version, this hanlder adds charset HTTP header when following conditions are met: . ... contents : Output buffer contents . ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.mb-output-handler.html -- 5.2 Кб -- 03.02.2002
Похожие документы
Похожие документы
2028. mb_preferred_mime_name
PHP Manual . ... Next . PHP 4 >= 4.0.6) mb_preferred_mime_name -- Get MIME charset string . string mb_preferred_mime_name ( string encoding) . mb_preferred_mime_name() returns MIME charset string for character encoding encoding . It returns charset string. Example 1. mb_preferred_mime_string() example . outputenc = "sjis-win"; mb_http_output($outputenc); ob_start("mb_output_handler"); header("Content-Type: text/html; charset=" . mb_preferred_mime_name($outputenc)); . ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.mb-preferred-mime-name.html -- 4.0 Кб -- 03.02.2002
Похожие документы
Похожие документы
2029. mb_detect_order
... PHP 4 >= 4.0.6) mb_detect_order -- Set/Get character encoding detection order . array mb_detect_order ( [mixed encoding-list]) . mb_detect_order() sets automatic character encoding detection order to encoding-list . ... Set detection order by enumerated list */ mb_detect_order("eucjp-win,sjis-win,UTF-8"); /* Set detection order by array */ $ary[] = "ASCII"; $ary[] = "JIS"; $ary[] = "EUC-JP"; mb_detect_order($ary); /* Display current detection order */ echo implode(", ", mb_detect_order()); . ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.mb-detect-order.html -- 6.7 Кб -- 03.02.2002
Похожие документы
Похожие документы
2030. mb_substitute_character
... PHP 4 >= 4.0.6) mb_substitute_character -- Set/Get substitution character . ... mb_substitute_character() specifies substitution character when input character encoding is invalid or character code is not exist in output character encoding. Invalid characters may be substituted NULL (no output), string or integer value (Unicode character code value). ... long" : Output character code value (Example: U+3000,JIS+7E7E) . ... If substchar is not set, it returns Unicode value or " none "/" long ". ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.mb-substitute-character.html -- 5.1 Кб -- 03.02.2002
Похожие документы
Похожие документы
2031. mb_http_input
... PHP 4 >= 4.0.6) mb_http_input -- Detect HTTP input character encoding . string mb_http_input ( [string type]) . mb_http_input() returns result of HTTP input character encoding detection. type : Input string specifies input type. ... If type is omitted, it returns last input type processed. Return Value: Character encoding name. If mb_http_input() does not process specified HTTP input, it returns FALSE . See also mb_internal_encoding() , mb_http_output() , mb_detect_order() . ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.mb-http-input.html -- 4.1 Кб -- 03.02.2002
Похожие документы
Похожие документы
2032. mb_http_output
PHP Manual . Prev . Next . PHP 4 >= 4.0.6) mb_http_output -- Set/Get HTTP output character encoding . string mb_http_output ( [string encoding]) . If encoding is set, mb_http_output() sets HTTP output character encoding to encoding . ... mb_http_output() returns TRUE for success and FALSE for failure. If encoding is omitted, mb_http_output() returns current HTTP output character encoding. See also mb_internal_encoding() , mb_http_input() , mb_detect_order() . ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.mb-http-output.html -- 4.2 Кб -- 03.02.2002
Похожие документы
Похожие документы
2033. mb_internal_encoding
... PHP 4 >= 4.0.6) mb_internal_encoding -- Set/Get internal character encoding . string mb_internal_encoding ( [string encoding]) . mb_internal_encoding() sets internal character encoding to encoding If parameter is omitted, it returns current internal encoding. encoding is used for HTTP input character encoding conversion, HTTP output character encoding conversion and default character encoding for string functions defined by mbstring module. encoding : Character encoding name . ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.mb-internal-encoding.html -- 5.0 Кб -- 03.02.2002
Похожие документы
Похожие документы
2034. mb_language
... PHP 4 >= 4.0.6) mb_language -- Set/Get current language . string mb_language ( [string language]) . ... If language is omitted, it returns current language as string. language setting is used for encoding e-mail messages. Valid languages are "Japanese", "ja","English","en" and "uni" (UTF-8). mb_send_mail() uses this setting to encode e-mail. Language and its setting is ISO-2022-JP/Base64 for Japanese, UTF-8/Base64 for uni, ISO-8859-1/quoted printable for English. ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.mb-language.html -- 4.4 Кб -- 03.02.2002
Похожие документы
Похожие документы
2035. mb_parse_str
PHP Manual . ... PHP 4 >= 4.0.6) mb_parse_str -- Parse GET/POST/COOKIE data and set global variable . boolean mb_parse_str ( string encoded_string [, array result]) . mb_parse_str() parses GET/POST/COOKIE data and sets global variables. ... It preses URL encoded data, detects encoding, converts coding to internal encoding and set values to result array or global variables. encoded_string : URL encoded data. result : Array contains decoded and character encoding converted values. ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.mb-parse-str.html -- 4.2 Кб -- 03.02.2002
Похожие документы
Похожие документы
2036. tan
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) tan -- Tangent . float tan ( float arg) . Returns the tangent of arg in radians. See also sin() and cos() . Prev . Home . Next . srand . Up . tanh
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.tan.html -- 3.2 Кб -- 03.02.2002
Похожие документы
Похожие документы
2037. tanh
. PHP Manual . Prev . Next . (PHP 4 >= 4.1.0) tanh -- Hyperbolic tangent . float tanh ( float arg) . Returns the hyperbolic tangent of arg , defined as sinh(arg)/cosh(arg) . See also tan() , atanh() , sin() and cos() . Prev . Home . Next . tan . Up . Multi-Byte String Functions
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.tanh.html -- 3.5 Кб -- 03.02.2002
Похожие документы
Похожие документы
2038. Mathematical Functions
PHP Manual . ... These math functions will only handle values within the range of the integer and float types on your computer. (this corresponds currently to the C types long resp. double) If you need to handle bigger numbers, take a look at the arbitrary precision math functions . The following values are defined as constants in PHP by the math extension: . ... Value . ... sqrt(pi) [4.0.2] . ... acosh -- Inverse hyperbolic cosine . ... getrandmax -- Show largest possible random value . ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/ref.math.html -- 11.3 Кб -- 03.02.2002
Похожие документы
Похожие документы
2039. sqrt
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) sqrt -- Square root . float sqrt ( float arg) . Returns the square root of arg . See also pow() . Prev . Home . Next . sinh . Up . srand
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.sqrt.html -- 3.2 Кб -- 03.02.2002
Похожие документы
Похожие документы
2040. srand
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) srand -- Seed the random number generator . void 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); } srand(make_seed()); $randval = rand(); . See also rand() , getrandmax() , mt_rand() , mt_srand() , and mt_getrandmax() . Prev . Home . Next . sqrt . Up . tan
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.srand.html -- 3.9 Кб -- 03.02.2002
Похожие документы
Похожие документы