Поиск по:old.master.cmc.msu.ru -
Поискать по всем серверам
На этой странице приведены все страницы сервера old.master.cmc.msu.ru ,которые мы индексируем. Показаны документы 761 - 780 из 3519.
Упорядочить по:
URL
|
дате изменения
761. localeconv
... positive_sign . ... The sign string precedes the quantity and currency_symbol . ... The sign string succeeds the quantity and currency_symbol . ... setlocale(LC_ALL, en_US ); $ locale_info = localeconv (); echo PRE \n ; echo --------------------------------------------\n ; echo Monetary information for current locale: \n ; echo --------------------------------------------\n\n ; echo int_curr_symbol: {$ locale_info [ int_curr_symbol ]}\n ; echo currency_symbol : {$ locale_info...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.localeconv.html -- 9.9 Кб -- 03.02.2002
Похожие документы
Похожие документы
762. levenshtein
... 3.0.17 - 3.0.18 only, PHP 4 ) levenshtein -- Calculate Levenshtein distance between two strings . int levenshtein ( string str1, string str2)int levenshtein ( string str1, string str2, int cost_ins, int cost_rep, int cost_del)int levenshtein ( string str1, string str2, function cost) . ... The Levenshtein distance is defined as the minimal number of characters you have to replace, insert or delete to transform str1 into str2 . ... actual character in string 1 . ... position in string 1 . ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.levenshtein.html -- 6.6 Кб -- 03.02.2002
Похожие документы
Похожие документы
763. join
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) join -- Join array elements with a string . string join ( string glue, array pieces) . join() is an alias to implode() , and is identical in every way. See also explode() , implode() , and split() . Prev . Home . Next . implode . Up . levenshtein
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.join.html -- 3.5 Кб -- 03.02.2002
Похожие документы
Похожие документы
764. htmlspecialchars
PHP Manual . ... PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) htmlspecialchars -- Convert special characters to HTML entities . string htmlspecialchars ( string string [, int quote_style [, string charset]]) . ... This function returns a string with some of these conversions made; the translations made are those most useful for everyday web programming. ... The optional second argument, quote_style, tells the function what to do with single and double quote characters. ... ampersand) becomes '&' . ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.htmlspecialchars.html -- 6.0 Кб -- 03.02.2002
Похожие документы
Похожие документы
765. implode
PHP Manual . ... PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) implode -- Join array elements with a string . string implode ( string glue, array pieces) . Returns a string containing a string representation of all the array elements in the same order, with the glue string between each element. Example 1. implode() example . colon_separated = implode(":", $array); . ... For consistency with explode() , however, it may be less confusing to use the documented order of arguments. ... join ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.implode.html -- 4.3 Кб -- 03.02.2002
Похожие документы
Похожие документы
766. htmlentities
... PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) htmlentities -- Convert all applicable characters to HTML entities . string htmlentities ( string string [, int quote_style [, string charset]]) . This function is identical to htmlspecialchars() in all ways, except that all characters which have HTML character entity equivalents are translated into these entities. Like htmlspecialchars() , it takes an optional second argument which indicates what should be done with single and double quotes. ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.htmlentities.html -- 4.7 Кб -- 03.02.2002
Похожие документы
Похожие документы
767. hebrevc
PHP Manual . Prev . Next . PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) hebrevc -- Convert logical Hebrew text to visual text with newline conversion . string hebrevc ( string hebrew_text [, int max_chars_per_line]) . This function is similar to hebrev() with the difference that it converts newlines (\n) to "<br>\n". The optional parameter max_chars_per_line indicates maximum number of characters per line will be output. The function tries to avoid breaking words. ... hebrev . ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.hebrevc.html -- 3.7 Кб -- 03.02.2002
Похожие документы
Похожие документы
768. hebrev
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) hebrev -- Convert logical Hebrew text to visual text . string hebrev ( string hebrew_text [, int max_chars_per_line]) . The optional parameter max_chars_per_line indicates maximum number of characters per line will be output. The function tries to avoid breaking words. See also hebrevc() . Prev . Home . Next . get_meta_tags . Up . hebrevc
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.hebrev.html -- 3.5 Кб -- 03.02.2002
Похожие документы
Похожие документы
769. get_meta_tags
PHP Manual . ... 3.0.4 - 3.0.18 only, PHP 4 >= 4.0.0) get_meta_tags -- Extracts all meta tag content attributes from a file and returns an array . array get_meta_tags ( string filename [, int use_include_path]) . Opens filename and parses it line by line for <meta> tags of the form . ... The value of the name property becomes the key, the value of the content property becomes the value of the returned array, so you can easily use standard array functions to traverse it or access single values. ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.get-meta-tags.html -- 4.5 Кб -- 03.02.2002
Похожие документы
Похожие документы
770. get_html_translation_table
... PHP 4 >= 4.0.0) get_html_translation_table -- Returns the translation table used by htmlspecialchars() and htmlentities() . ... trans = get_html_translation_table(HTML_ENTITIES); $str = "Hallo & <Frau> & KrДmer"; $encoded = strtr($str, $trans); The $encoded variable will now contain: "Hallo & amp ; & lt ;Frau& gt ; & amp ; Kr& auml ;mer". The cool thing is using array_flip() to change the direction of the translation. $trans = array_flip($trans); $original = strtr($str, $trans); . ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.get-html-translation-table.html -- 6.0 Кб -- 03.02.2002
Похожие документы
Похожие документы
771. explode
PHP Manual . ... PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) explode -- Split a string by string . array explode ( string separator, string string [, int limit]) . ... If limit is set, the returned array will contain a maximum of limit elements with the last element containing the rest of string . ... pizza = "piece1 piece2 piece3 piece4 piece5 piece6"; $pieces = explode(" ", $pizza); $data = "foo:*:1023:1000::/home/foo:/bin/sh"; list($user,$pass,$uid,$gid,$gecos,$home,$shell) = explode(":",$data); . ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.explode.html -- 5.7 Кб -- 03.02.2002
Похожие документы
Похожие документы
772. echo
... unknown) echo -- Output one or more strings . ... You can use variables inside of an echo statement $foo = "foobar"; $bar = "barbaz"; echo "foo is $foo"; // foo is foobar // Using single quotes will print the variable name, not the value echo 'foo is $foo'; // foo is $foo // If you are not using any other characters, you can just echo variables echo $foo; // foobar echo $foo,$bar; // foobarbarbaz echo <<<END This uses the "here document" syntax to output multiple lines with $variable interpolation. ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.echo.html -- 5.4 Кб -- 03.02.2002
Похожие документы
Похожие документы
773. crypt
PHP Manual . ... PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) crypt -- One-way string encryption (hashing) . ... If no salt is provided, PHP will auto-generate a standard two character salt by default, unless the default encryption type on the system is MD5, in which case a random MD5-compatible salt is generated. ... As # it says above, standard DES-based password hashing uses a 2-character salt, # but MD5-based hashing uses 12.) if (crypt($user_input,$password) == $password) { echo "Password verified!" ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.crypt.html -- 6.7 Кб -- 03.02.2002
Похожие документы
Похожие документы
774. count_chars
... PHP 4 >= 4.0.0) count_chars -- Return information about characters used in a string . mixed count_chars ( string string [, int mode]) . ... 0 - an array with the byte-value as key and the frequency of every byte as value. 1 - same as 0 but only byte-values with a frequency greater than zero are listed. 2 - same as 0 but only byte-values with a frequency equal to zero are listed. 3 - a string containing all used byte-values is returned. 4 - a string containing all not used byte-values is returned. ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.count-chars.html -- 4.1 Кб -- 03.02.2002
Похожие документы
Похожие документы
775. crc32
. PHP Manual . Prev . Next . (PHP 4 ) crc32 -- Calculates the crc32 polynomial of a string . int crc32 ( string str) . Generates the cyclic redundancy checksum polynomial of 32-bit lengths of the str . This is usually used to validate the integrity of data being transmitted. See also: md5() . Prev . Home . Next . count_chars . Up . crypt
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.crc32.html -- 3.4 Кб -- 03.02.2002
Похожие документы
Похожие документы
776. convert_cyr_string
PHP Manual . Prev . Next . 3.0.6 - 3.0.18 only, PHP 4 >= 4.0.0) convert_cyr_string -- Convert from one Cyrillic character set to another . string convert_cyr_string ( string str, string from, string to) . This function returns the given string converted from one Cyrillic character set to another. The from and to arguments are single characters that represent the source and target Cyrillic character sets. ... m - x-mac-cyrillic . ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.convert-cyr-string.html -- 3.9 Кб -- 03.02.2002
Похожие документы
Похожие документы
777. chunk_split
... 3.0.6 - 3.0.18 only, PHP 4 >= 4.0.0) chunk_split -- Split a string into smaller chunks . string chunk_split ( string body [, int chunklen [, string end]]) . Can be used to split a string into smaller chunks which is useful for e.g. converting base64_encode output to match RFC 2045 semantics. It inserts end (defaults to "\r\n") every chunklen characters (defaults to 76). ... format $data using RFC 2045 semantics $new_string = chunk_split(base64_encode($data)); . ... convert_cyr_string ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.chunk-split.html -- 4.3 Кб -- 03.02.2002
Похожие документы
Похожие документы
778. chop
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) chop -- Alias of rtrim() . This function is an alias of rtrim() . Note: chop() is different than the Perl chop() function, which removes the last character in the string. Prev . Home . Next . bin2hex . Up . chr
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.chop.html -- 3.4 Кб -- 03.02.2002
Похожие документы
Похожие документы
779. chr
PHP Manual . Prev . Next . PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) chr -- Return a specific character . string chr ( int ascii) . Returns a one-character string containing the character specified by ascii . Example 1. chr() example . str .= chr(27); /* add an escape character at the end of $str */ /* Often this is more useful */ $str = sprintf("The string ends in escape: %c", 27); . ... See also sprintf() with a format string of %c . ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.chr.html -- 4.2 Кб -- 03.02.2002
Похожие документы
Похожие документы
780. addslashes
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) addslashes -- Quote string with slashes . string addslashes ( string str) . Returns a string with backslashes before characters that need to be quoted in database queries etc. These characters are single quote ( ' ), double quote ( " ), backslash ( \ ) and NUL (the NULL byte). Note: magic_quotes_gpc is ON by default. See also stripslashes() , htmlspecialchars() , and quotemeta() . Prev . Home . Next . addcslashes . Up . bin2hex
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.addslashes.html -- 3.9 Кб -- 03.02.2002
Похожие документы
Похожие документы