Поиск по:old.hcs.cmc.msu.ru -
Поискать по всем серверам
На этой странице приведены все страницы сервера old.hcs.cmc.msu.ru ,которые мы индексируем. Показаны документы 741 - 760 из 3520.
Упорядочить по:
URL
|
дате изменения
741. strncasecmp
... Next . PHP 4 >= 4.0.2) strncasecmp -- Binary safe case-insensitive string comparison of the first n characters . int strncasecmp ( string str1, string str2, int len) . This function is similar to strcasecmp() , with the difference that you can specify the (upper limit of the) number of characters ( len ) from each string to be used in the comparison. If any of the strings is shorter than len , then the length of that string will be used for the comparison. ... strcasecmp ...
[
Сохраненная копия
]
Ссылки http://old.hcs.cmc.msu.ru/php/function.strncasecmp.html -- 4.4 Кб -- 03.02.2002
Похожие документы
Похожие документы
742. strcasecmp
... 3.0.2 - 3.0.18 only, PHP 4 >= 4.0.0) strcasecmp -- Binary safe case-insensitive string comparison . int strcasecmp ( string str1, string str2) . Returns < 0 if str1 is less than str2 ; > 0 if str1 is greater than str2 , and 0 if they are equal. Example 1. strcasecmp() example . var1 = "Hello"; $var2 = "hello"; if (!strcasecmp($var1, $var2)) { echo '$var1 is equal to $var2 in a case-insensitive string comparison'; } . ...
[
Сохраненная копия
]
Ссылки http://old.hcs.cmc.msu.ru/php/function.strcasecmp.html -- 4.4 Кб -- 03.02.2002
Похожие документы
Похожие документы
743. sprintf
... PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) sprintf -- Return a formatted string . ... No argument is required. b - the argument is treated as an integer , and presented as a binary number . c - the argument is treated as an integer , and presented as the character with that ASCII value. d - the argument is treated as an integer , and presented as a (signed) decimal number . u - the argument is treated as an integer , and presented as an unsigned decimal ... Example 1. ...
[
Сохраненная копия
]
Ссылки http://old.hcs.cmc.msu.ru/php/function.sprintf.html -- 11.2 Кб -- 03.02.2002
Похожие документы
Похожие документы
744. soundex
PHP Manual . Prev . Next . PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) soundex -- Calculate the soundex key of a string . string soundex ( string str) . Calculates the soundex key of str . ... This soundex function returns a string 4 characters long, starting with a letter. This particular soundex function is one described by Donald Knuth in "The Art Of Computer Programming, vol. ... Soundex Examples . ... See also levenshtein() , metaphone() , and similar_text() . ... similar_text . ...
[
Сохраненная копия
]
Ссылки http://old.hcs.cmc.msu.ru/php/function.soundex.html -- 4.6 Кб -- 03.02.2002
Похожие документы
Похожие документы
745. similar_text
PHP Manual . Prev . Next . 3.0.7 - 3.0.18 only, PHP 4 >= 4.0.0) similar_text -- Calculate the similarity between two strings . int similar_text ( string first, string second [, float percent]) . This calculates the similarity between two strings as described in Oliver [1993]. ... By passing a reference as third argument, similar_text() will calculate the similarity in percent for you. It returns the number of matching chars in both strings. ...
[
Сохраненная копия
]
Ссылки http://old.hcs.cmc.msu.ru/php/function.similar-text.html -- 3.8 Кб -- 03.02.2002
Похожие документы
Похожие документы
746. setlocale
PHP Manual . ... PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) setlocale -- Set locale information . string setlocale ( mixed category, string locale) . Category is a named constant (or string) specifying the category of the functions affected by the locale setting: . ... LC_COLLATE for string comparison, see strcoll() . ... php /* Set locale to Dutch */ setlocale (LC_ALL, 'nl_NL'); /* Output: vrijdag 22 december 1978 */ echo strftime ("%A %e %B %Y", mktime (0, 0, 0, 12, 22, 1978)); ?> ...
[
Сохраненная копия
]
Ссылки http://old.hcs.cmc.msu.ru/php/function.setlocale.html -- 5.5 Кб -- 03.02.2002
Похожие документы
Похожие документы
747. rtrim
... PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) rtrim -- Strip whitespace from the end of a string . ... Without the second parameter, rtrim() will strip these characters: . ... php $text = "\t\tThese are a few words :) ... "; $trimmed = rtrim($text); // $trimmed = "\t\tThese are a few words :) ..." $trimmed = rtrim($text," \t."); // $trimmed = "\t\tThese are a few words :)" $clean = rtrim($binary,"\0x00..\0x1F"); // trim the ASCII control characters at the end of $binary // (from 0 to 31 inclusive) ?> ...
[
Сохраненная копия
]
Ссылки http://old.hcs.cmc.msu.ru/php/function.rtrim.html -- 5.7 Кб -- 03.02.2002
Похожие документы
Похожие документы
748. sscanf
... PHP 4 ) sscanf -- Parses input from a string according to a format . ... The function sscanf() is the input analog of printf() . ... getting the serial number $serial = sscanf("SN/2350001","SN/%d"); // and the date of manufacturing $mandate = "January 01 2000"; list($month, $day, $year) = sscanf($mandate,"%s %d %d"); echo "Item $serial was manufactured on: $year-".substr($month,0,3)."-$day\n"; If optional parameters are passed, the function will return the number of assigned values. ...
[
Сохраненная копия
]
Ссылки http://old.hcs.cmc.msu.ru/php/function.sscanf.html -- 5.2 Кб -- 03.02.2002
Похожие документы
Похожие документы
749. str_rot13
PHP Manual . Prev . Next . PHP 4 CVS only) str_rot13 -- Perform the rot13 transform on a string . string str_rot13 ( string str) . This function performs the ROT13 encoding on the str argument and returns the resulting string. The ROT13 encoding simply shifts every letter by 13 places in the alphabet while leaving non-alpha characters untouched. Encoding and decoding are done by the same function, passing an encoded string as argument will return the original version. ...
[
Сохраненная копия
]
Ссылки http://old.hcs.cmc.msu.ru/php/function.str-rot13.html -- 3.5 Кб -- 03.02.2002
Похожие документы
Похожие документы
750. quotemeta
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) quotemeta -- Quote meta characters . string quotemeta ( string str) . Returns a version of str with a backslash character ( \ ) before every character that is among these: . \\ + * ? [ ^ ] ( $ ) . See also addslashes() , htmlentities() , htmlspecialchars() , nl2br() , and stripslashes() . Prev . Home . Next . quoted_printable_decode . Up . str_rot13
[
Сохраненная копия
]
Ссылки http://old.hcs.cmc.msu.ru/php/function.quotemeta.html -- 3.9 Кб -- 03.02.2002
Похожие документы
Похожие документы
751. printf
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) printf -- Output a formatted string . void printf ( string format [, mixed args]) . Produces output according to format , which is described in the documentation for sprintf() . See also: print() , sprintf() , sscanf() , fscanf() , and flush() . Prev . Home . Next . print . Up . quoted_printable_decode
[
Сохраненная копия
]
Ссылки http://old.hcs.cmc.msu.ru/php/function.printf.html -- 3.8 Кб -- 03.02.2002
Похожие документы
Похожие документы
752. quoted_printable_decode
. PHP Manual . Prev . Next . (3.0.6 - 3.0.18 only, PHP 4 >= 4.0.0) quoted_printable_decode -- Convert a quoted-printable string to an 8 bit string . string quoted_printable_decode ( string str) . This function returns an 8-bit binary string corresponding to the decoded quoted printable string. This function is similar to imap_qprint() , except this one does not require the IMAP module to work. Prev . Home . Next . printf . Up . quotemeta
[
Сохраненная копия
]
Ссылки http://old.hcs.cmc.msu.ru/php/function.quoted-printable-decode.html -- 3.5 Кб -- 03.02.2002
Похожие документы
Похожие документы
753. print
... unknown) print -- Output a string . print ( string arg) . ... You can use variables inside of an print statement $foo = "foobar"; $bar = "barbaz"; print "foo is $foo"; // foo is foobar // Using single quotes will print the variable name, not the value print 'foo is $foo'; // foo is $foo // If you are not using any other characters, you can just print variables print $foo; // foobar print <<<END This uses the "here document" syntax to output multiple lines with $variable interpolation. ... END; ?> ...
[
Сохраненная копия
]
Ссылки http://old.hcs.cmc.msu.ru/php/function.print.html -- 4.8 Кб -- 03.02.2002
Похожие документы
Похожие документы
754. parse_str
PHP Manual . ... PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) parse_str -- Parses the string into variables . void parse_str ( string str [, array arr]) . ... If the second parameter arr is present, variables are stored in this variable as an array elements instead. ... Using parse_str() . str = "first=value&second[]=this+works&second[]=another"; parse_str($str); echo $first; /* prints "value" */ echo $second[0]; /* prints "this works" */ echo $second[1]; /* prints "another" */ . ... print ...
[
Сохраненная копия
]
Ссылки http://old.hcs.cmc.msu.ru/php/function.parse-str.html -- 4.3 Кб -- 03.02.2002
Похожие документы
Похожие документы
755. ord
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) ord -- Return ASCII value of character . int ord ( string string) . Returns the ASCII value of the first character of string . This function complements chr() . Example 1. ord() example . if (ord($str) == 10) { echo "The first character of \$str is a line feed.\n"; } . You can find an ASCII-table over here: http://www.mindspring.com/~jc1/serial/Resources/ASCII.html . See also chr() . Prev . Home . Next . nl2br . Up . parse_str
[
Сохраненная копия
]
Ссылки http://old.hcs.cmc.msu.ru/php/function.ord.html -- 4.0 Кб -- 03.02.2002
Похожие документы
Похожие документы
756. nl2br
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) nl2br -- Inserts HTML line breaks before all newlines in a string . string nl2br ( string string) . Returns string with '<br />' inserted before all newlines. Note: Starting with PHP 4.0.5, nl2br() is now XHTML compliant. All versions before 4.0.5 will return string with '<br>' inserted before newlines instead of '<br />'. See also htmlspecialchars() , htmlentities() and wordwrap() . Prev . Home . Next . metaphone . Up . ord
[
Сохраненная копия
]
Ссылки http://old.hcs.cmc.msu.ru/php/function.nl2br.html -- 3.9 Кб -- 03.02.2002
Похожие документы
Похожие документы
757. metaphone
PHP Manual . Prev . Next . PHP 4 >= 4.0.0) metaphone -- Calculate the metaphone key of a string . string metaphone ( string str) . Calculates the metaphone key of str . Similar to soundex() metaphone creates the same key for similar sounding words. ... The metaphone generated keys are of variable length. Metaphone was developed by Lawrence Philips <lphilips@verity.com>. It is described in ["Practical Algorithms for Programmers", Binstock & Rex, Addison Wesley, 1995]. ...
[
Сохраненная копия
]
Ссылки http://old.hcs.cmc.msu.ru/php/function.metaphone.html -- 3.8 Кб -- 03.02.2002
Похожие документы
Похожие документы
758. md5_file
. PHP Manual . Prev . Next . (PHP 4 CVS only) md5_file -- Calculates the md5 hash of a given filename . string md5_file ( string filename) . Calculates the MD5 hash of the specified filename using the RSA Data Security, Inc. MD5 Message-Digest Algorithm , and returns that hash. This function has the same purpose of the command line utility md5sum. See also: md5() and crc32() . Prev . Home . Next . md5 . Up . metaphone
[
Сохраненная копия
]
Ссылки http://old.hcs.cmc.msu.ru/php/function.md5-file.html -- 3.6 Кб -- 03.02.2002
Похожие документы
Похожие документы
759. md5
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) md5 -- Calculate the md5 hash of a string . string md5 ( string str) . Calculates the MD5 hash of str using the RSA Data Security, Inc. MD5 Message-Digest Algorithm , and returns that hash. The hash is a 32-character hexadecimal number. See also: crc32() and md5_file() . Prev . Home . Next . ltrim . Up . md5_file
[
Сохраненная копия
]
Ссылки http://old.hcs.cmc.msu.ru/php/function.md5.html -- 3.5 Кб -- 03.02.2002
Похожие документы
Похожие документы
760. 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.hcs.cmc.msu.ru/php/function.localeconv.html -- 9.9 Кб -- 03.02.2002
Похожие документы
Похожие документы