Поиск по:old.master.cmc.msu.ru -
Поискать по всем серверам
На этой странице приведены все страницы сервера old.master.cmc.msu.ru ,которые мы индексируем. Показаны документы 721 - 740 из 3519.
Упорядочить по:
URL
|
дате изменения
721. strstr
PHP Manual . ... Next . PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) strstr -- Find first occurrence of a string . string strstr ( string haystack, string needle) . Returns all of haystack from the first occurrence of needle to the end. ... If needle is not a string, it is converted to an integer and applied as the ordinal value of a character. ... Example 1. strstr() example . email = 'sterling@designmultimedia.com'; $domain = strstr($email, '@'); print $domain; // prints @designmultimedia.com . ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.strstr.html -- 4.8 Кб -- 03.02.2002
Похожие документы
Похожие документы
722. strspn
PHP Manual . Prev . Next . 3.0.3 - 3.0.18 only, PHP 4 >= 4.0.0) strspn -- Find length of initial segment matching mask . int strspn ( string str1, string str2) . Returns the length of the initial segment of str1 which consists entirely of characters in str2 . ... var = strspn("42 is the answer, what is the question ...", "1234567890"); . will assign 2 to $var , because the string "42" will be the longest segment containing characters from "1234567890". ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.strspn.html -- 3.9 Кб -- 03.02.2002
Похожие документы
Похожие документы
723. strrpos
... PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) strrpos -- Find position of last occurrence of a char in a string . int strrpos ( string haystack, char needle) . ... Note that the needle in this case can only be a single character. ... If needle is not found, returns FALSE . ... in PHP 4.0b3 and newer: $pos = strrpos($mystring, "b"); if ($pos === false) { // note: three equal signs // not found... } // in versions older than 4.0b3: $pos = strrpos($mystring, "b"); if (is_string($pos) && !$pos) { // not found.. ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.strrpos.html -- 4.9 Кб -- 03.02.2002
Похожие документы
Похожие документы
724. strrev
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) strrev -- Reverse a string . string strrev ( string string) . Returns string , reversed. Example 1. Reversing a string with strrev() . <php echo strrev("Hello world!"); // outputs "!dlrow olleH" ?> . Prev . Home . Next . str_repeat . Up . strrpos
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.strrev.html -- 3.6 Кб -- 03.02.2002
Похожие документы
Похожие документы
725. strrchr
... PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) strrchr -- Find the last occurrence of a character in a string . string strrchr ( string haystack, string needle) . This function returns the portion of haystack which starts at the last occurrence of needle and goes until the end of haystack . ... Example 1. strrchr() example . get last directory in $PATH $dir = substr(strrchr($PATH, ":"), 1); // get everything after last newline $text = "Line 1\nLine 2\nLine 3"; $last = substr(strrchr($text, 10), 1 ); . ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.strrchr.html -- 4.7 Кб -- 03.02.2002
Похожие документы
Похожие документы
726. str_repeat
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.0) str_repeat -- Repeat a string . string str_repeat ( string input, int multiplier) . Returns input_str repeated multiplier times. multiplier has to be greater than 0. Example 1. str_repeat() example . echo str_repeat("-=", 10); . This will output "-=-=-=-=-=-=-=-=-=-=". See also substr_count() . Prev . Home . Next . strrchr . Up . strrev
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.str-repeat.html -- 3.8 Кб -- 03.02.2002
Похожие документы
Похожие документы
727. strpos
... PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) strpos -- Find position of first occurrence of a string . int strpos ( string haystack, string needle [, int offset]) . ... Note: It is easy to mistake the return values for "character found at position 0" and "character not found". ... in PHP 4.0b3 and newer: $pos = strpos($mystring, "b"); if ($pos === false) { // note: three equal signs // not found... } // in versions older than 4.0b3: $pos = strpos($mystring, "b"); if (!is_integer($pos)) { // not found.. ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.strpos.html -- 5.3 Кб -- 03.02.2002
Похожие документы
Похожие документы
728. strncmp
PHP Manual . ... Next . PHP 4 >= 4.0.0) strncmp -- Binary safe string comparison of the first n characters . int strncmp ( string str1, string str2, int len) . This function is similar to strcmp() , 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. ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.strncmp.html -- 4.5 Кб -- 03.02.2002
Похожие документы
Похожие документы
729. str_pad
... PHP 4 ) str_pad -- Pad a string to a certain length with another string . string str_pad ( string input, int pad_length [, string pad_string [, int pad_type]]) . This functions returns the input string padded on the left, the right, or both sides to the specified padding length. ... input = "Alien"; print str_pad($input, 10); // produces "Alien " print str_pad($input, 10, "-=", STR_PAD_LEFT); // produces "-=-=-Alien" print str_pad($input, 10, "_", STR_PAD_BOTH); // produces "__Alien___" . ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.str-pad.html -- 4.6 Кб -- 03.02.2002
Похожие документы
Похожие документы
730. strnatcasecmp
... PHP 4 >= 4.0.0) strnatcasecmp -- Case insensitive string comparisons using a "natural order" algorithm . int strnatcasecmp ( string str1, string str2) . This function implements a comparison algorithm that orders alphanumeric strings in the way a human being would. The behaviour of this function is similar to strnatcmp() , except that the comparison is not case sensitive. For more infomation see: Martin Pool's Natural Order String Comparison page. ... strnatcmp . ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.strnatcasecmp.html -- 4.7 Кб -- 03.02.2002
Похожие документы
Похожие документы
731. strnatcmp
... PHP 4 >= 4.0.0) strnatcmp -- String comparisons using a "natural order" algorithm . ... This function implements a comparison algorithm that orders alphanumeric strings in the way a human being would, this is described as a "natural ordering". ... arr1 = $arr2 = array("img12.png","img10.png","img2.png","img1.png"); echo "Standard string comparison\n"; usort($arr1,"strcmp"); print_r($arr1); echo "\nNatural order string comparison\n"; usort($arr2,"strnatcmp"); print_r($arr2); . ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.strnatcmp.html -- 5.9 Кб -- 03.02.2002
Похожие документы
Похожие документы
732. stristr
PHP Manual . Prev . Next . 3.0.6 - 3.0.18 only, PHP 4 >= 4.0.0) stristr -- Case-insensitive strstr() . string stristr ( string haystack, string needle) . Returns all of haystack from the first occurrence of needle to the end. needle and haystack are examined in a case-insensitive manner. If needle is not found, returns FALSE . If needle is not a string, it is converted to an integer and applied as the ordinal value of a character. ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.stristr.html -- 4.1 Кб -- 03.02.2002
Похожие документы
Похожие документы
733. strlen
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) strlen -- Get string length . int strlen ( string str) . Returns the length of string . Prev . Home . Next . stristr . Up . strnatcmp
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.strlen.html -- 3.2 Кб -- 03.02.2002
Похожие документы
Похожие документы
734. stripcslashes
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.0) stripcslashes -- Un-quote string quoted with addcslashes() . string stripcslashes ( string str) . Returns a string with backslashes stripped off. Recognizes C-like \n , \r ..., octal and hexadecimal representation. See also addcslashes() . Prev . Home . Next . strip_tags . Up . stripslashes
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.stripcslashes.html -- 3.5 Кб -- 03.02.2002
Похожие документы
Похожие документы
735. stripslashes
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) stripslashes -- Un-quote string quoted with addslashes() . string stripslashes ( string str) . Returns a string with backslashes stripped off. ( \' becomes ' and so on.) Double backslashes are made into a single backslash. See also addslashes() . Prev . Home . Next . stripcslashes . Up . stristr
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.stripslashes.html -- 3.5 Кб -- 03.02.2002
Похожие документы
Похожие документы
736. strcspn
. PHP Manual . Prev . Next . (3.0.3 - 3.0.18 only, PHP 4 >= 4.0.0) strcspn -- Find length of initial segment not matching mask . int strcspn ( string str1, string str2) . Returns the length of the initial segment of str1 which does not contain any of the characters in str2 . See also strspn() . Prev . Home . Next . strcoll . Up . strip_tags
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.strcspn.html -- 3.5 Кб -- 03.02.2002
Похожие документы
Похожие документы
737. strip_tags
PHP Manual . ... 3.0.8 - 3.0.18 only, PHP 4 >= 4.0.0) strip_tags -- Strip HTML and PHP tags from a string . string strip_tags ( string str [, string allowable_tags]) . This function tries to return a string with all HTML and PHP tags stripped from a given str . ... This function does not modify any attributes on the tags that you allow using allowable_tags , including the style and onmouseover attributes that a mischievous user may abuse when posting text that will be shown to other users. ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.strip-tags.html -- 4.8 Кб -- 03.02.2002
Похожие документы
Похожие документы
738. strcoll
... Next . PHP 4 >= 4.0.5) strcoll -- Locale based string comparison . int strcoll ( 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. strcoll() uses the current locale for doing the comparisons. If the current locale is C or POSIX, this function is equivalent to strcmp() . Note that this comparison is case sensitive, and unlike strcmp() this function is not binary safe. ... strcmp . ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.strcoll.html -- 4.5 Кб -- 03.02.2002
Похожие документы
Похожие документы
739. strcmp
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) strcmp -- Binary safe string comparison . int strcmp ( 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. Note that this comparison is case sensitive. See also ereg() , strcasecmp() , substr() , stristr() , strncasecmp() , strncmp() , and strstr() . Prev . Home . Next . strchr . Up . strcoll
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.strcmp.html -- 4.0 Кб -- 03.02.2002
Похожие документы
Похожие документы
740. strchr
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) strchr -- Find the first occurrence of a character . string strchr ( string haystack, string needle) . This function is an alias for strstr() , and is identical in every way. Prev . Home . Next . strcasecmp . Up . strcmp
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.strchr.html -- 3.3 Кб -- 03.02.2002
Похожие документы
Похожие документы