XWare Поиск по информационным ресурсам МГУ English Russian
       
       Точная форма слов   О проекте   Сайты   Помощь
Поиск по:old.master.cmc.msu.ru   - Поискать по всем серверам
На этой странице приведены все страницы сервера old.master.cmc.msu.ru ,которые мы индексируем. Показаны документы 701 - 720 из 3519.

В начало ] Пред. | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | След.В конец ]

Упорядочить по: URL  |  дате изменения
701. sybase_fetch_array
PHP Manual . Prev . Next . PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) sybase_fetch_array -- fetch row as array . array sybase_fetch_array ( int result) . Returns: An array that corresponds to the fetched row, or FALSE if there are no more rows. sybase_fetch_array() is an extended version of sybase_fetch_row() . In addition to storing the data in the numeric indices of the result array, it also stores the data in associative indices, using the field names as keys. ... sybase_data_seek . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.sybase-fetch-array.html -- 4.2 Кб -- 03.02.2002
Похожие документы

702. sybase_close
PHP Manual . Prev . Next . PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) sybase_close -- close Sybase connection . bool sybase_close ( int link_identifier) . ... sybase_close() closes the link to a Sybase database that's associated with the specified link identifier. If the link identifier isn't specified, the last opened link is assumed. ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.sybase-close.html -- 4.1 Кб -- 03.02.2002
Похожие документы

703. sybase_connect
PHP Manual . ... PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) sybase_connect -- open Sybase server connection . int sybase_connect ( string servername, string username, string password [, string charset]) . Returns: A positive Sybase link identifier on success, or FALSE on error. sybase_connect() establishes a connection to a Sybase server. ... The link to the server will be closed as soon as the execution of the script ends, unless it's closed earlier by explicitly calling sybase_close() . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.sybase-connect.html -- 4.3 Кб -- 03.02.2002
Похожие документы

704. sybase_affected_rows
... 3.0.6 - 3.0.18 only, PHP 4 >= 4.0.0) sybase_affected_rows -- get number of affected rows in last query . int sybase_affected_rows ( [int link_identifier]) . Returns: The number of affected rows by the last query. sybase_affected_rows() returns the number of rows affected by the last INSERT, UPDATE or DELETE query on the server associated with the specified link identifier. If the link identifier isn't specified, the last opened link is assumed. ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.sybase-affected-rows.html -- 4.0 Кб -- 03.02.2002
Похожие документы

705. String functions
... These functions all manipulate strings in various ways. ... bin2hex -- Convert binary data into hexadecimal representation . ... chr -- Return a specific character . ... convert_cyr_string -- Convert from one Cyrillic character set to another . count_chars -- Return information about characters used in a string . ... strncasecmp -- Binary safe case-insensitive string comparison of the first n characters . ... strncmp -- Binary safe string comparison of the first n characters . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/ref.strings.html -- 12.8 Кб -- 03.02.2002
Похожие документы

706. nl_langinfo
. PHP Manual . Prev . Next . (PHP 4 >= 4.1.0) nl_langinfo -- Query language and locale information . string nl_langinfo ( int item) . Warning . This function is currently not documented, only the argument list is available. Prev . Home . Next . wordwrap . Up . Sybase functions
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.nl-langinfo.html -- 3.4 Кб -- 03.02.2002
Похожие документы

707. vsprintf
. PHP Manual . Prev . Next . (PHP 4 >= 4.1.0) vsprintf -- Return a formatted string . string vsprintf ( string format, array args) . Return array values as a formatted string according to format (which is described in the documentation for sprintf() ). Operates as sprintf() but accepts an array of arguments, rather than a variable number of arguments. See also: sprintf() , vsprintf() , vprintf() . Prev . Home . Next . vprintf . Up . wordwrap
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.vsprintf.html -- 3.7 Кб -- 03.02.2002
Похожие документы

708. wordwrap
... PHP 4 >= 4.0.2) wordwrap -- Wraps a string to a given number of characters using a string break character. string wordwrap ( string str [, int width [, string break [, int cut]]]) . Returns a string with str wrapped at the column number specified by the (optional) width parameter. ... text = "The quick brown fox jumped over the lazy dog."; $newtext = wordwrap( $text, 20 ); echo "$newtext\n"; . ... text = "A very long woooooooooooord."; $newtext = wordwrap( $text, 8, "\n", 1); echo "$newtext\n"; . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.wordwrap.html -- 5.8 Кб -- 03.02.2002
Похожие документы

709. vprintf
. PHP Manual . Prev . Next . (PHP 4 >= 4.1.0) vprintf -- Output a formatted string . void vprintf ( string format, array args) . Display array values as a formatted string according to format (which is described in the documentation for sprintf() ). Operates as printf() but accepts an array of arguments, rather than a variable number of arguments. See also: printf() , sprintf() , vsprintf() . Prev . Home . Next . ucwords . Up . vsprintf
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.vprintf.html -- 3.8 Кб -- 03.02.2002
Похожие документы

710. ucfirst
PHP Manual . ... PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) ucfirst -- Make a string's first character uppercase . string ucfirst ( string str) . Returns a string with the first character of str capitalized, if that character is alphabetic. ... Example 1. ucfirst() example . foo = 'hello world!'; $foo = ucfirst($foo); // Hello world! $bar = 'HELLO WORLD!'; $bar = ucfirst($bar); // HELLO WORLD! $bar = ucfirst(strtolower($bar)); // Hello world! ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.ucfirst.html -- 4.2 Кб -- 03.02.2002
Похожие документы

711. ucwords
... 3.0.3 - 3.0.18 only, PHP 4 >= 4.0.0) ucwords -- Uppercase the first character of each word in a string . string ucwords ( string str) . Returns a string with the first character of each word in str capitalized, if that character is alphabetic. Example 1. ucwords() example . foo = 'hello world!'; $foo = ucwords($foo); // Hello World! $bar = 'HELLO WORLD!'; $bar = ucwords($bar); // HELLO WORLD! $bar = ucwords(strtolower($bar)); // Hello World! ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.ucwords.html -- 4.4 Кб -- 03.02.2002
Похожие документы

712. substr_replace
... PHP 4 >= 4.0.0) substr_replace -- Replace text within a portion of a string . string substr_replace ( string string, string replacement, int start [, int length]) . ... php $var = 'ABCDEFGH:/MNRPQR/'; echo "Original: $var<hr>\n"; /* These two examples replace all of $var with 'bob'. */ echo substr_replace($var, 'bob', 0) . br>\n"; echo substr_replace($var, 'bob', 0, strlen($var)) . ... br>\n"; /* These next two replace 'MNRPQR' in $var with 'bob'. */ echo substr_replace($var, 'bob', 10, -1) . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.substr-replace.html -- 5.8 Кб -- 03.02.2002
Похожие документы

713. trim
PHP Manual . ... PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) trim -- Strip whitespace from the beginning and end of a string . string trim ( string str [, string charlist]) . ... php $text = "\t\tThese are a few words :) ... "; $trimmed = trim($text); // $trimmed = "These are a few words :) ..." $trimmed = trim($text," \t."); // $trimmed = "These are a few words :)" $clean = trim($binary,"\0x00..\0x1F"); // trim the ASCII control characters at the beginning and end of $binary // (from 0 to 31 inclusive) ?> ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.trim.html -- 5.8 Кб -- 03.02.2002
Похожие документы

714. substr_count
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.0) substr_count -- Count the number of substring occurrences . int substr_count ( string haystack, string needle) . substr_count() returns the number of times the needle substring occurs in the haystack string. Example 1. substr_count() example . print substr_count("This is a test", "is"); // prints out 2 . Prev . Home . Next . substr . Up . substr_replace
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.substr-count.html -- 3.8 Кб -- 03.02.2002
Похожие документы

715. substr
... PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) substr -- Return part of a string . string substr ( string string, int start [, int length]) . ... If start is positive, the returned string will start at the start 'th position in string , counting from zero. ... Basic substr() usage . rest = substr("abcdef", 1); // returns "bcdef" $rest = substr("abcdef", 1, 3); // returns "bcd" $rest = substr("abcdef", 0, 4); // returns "abcd" $rest = substr("abcdef", 0, 8); // returns "abcdef" . ... Using a negative start . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.substr.html -- 6.8 Кб -- 03.02.2002
Похожие документы

716. strtr
PHP Manual . ... PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) strtr -- Translate certain characters . string strtr ( string str, string from, string to) . ... strtr() can be called with only two arguments. If called with two arguments it behaves in a new way: from then has to be an array that contains string -> string pairs that will be replaced in the source string. strtr() will always look for the longest possible match first and will *NOT* try to replace stuff that it has already worked on. ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.strtr.html -- 5.2 Кб -- 03.02.2002
Похожие документы

717. str_replace
PHP Manual . ... 3.0.6 - 3.0.18 only, PHP 4 >= 4.0.0) str_replace -- Replace all occurrences of the search string with the replacement string . mixed str_replace ( mixed search, mixed replace, mixed subject) . This function returns a string or an array with all occurences of search in subject replaced with the given replace value. ... If search and replace are arrays, then str_replace() takes a value from each array and uses them to do search and replace on subject . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.str-replace.html -- 5.8 Кб -- 03.02.2002
Похожие документы

718. strtoupper
PHP Manual . ... PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) strtoupper -- Make a string uppercase . string strtoupper ( string string) . Returns string with all alphabetic characters converted to uppercase. ... For instance, in the default "C" locale characters such as umlaut-a (Д) will not be converted. Example 1. strtoupper() example . str = "Mary Had A Little Lamb and She LOVED It So"; $str = strtoupper($str); print $str; # Prints MARY HAD A LITTLE LAMB AND SHE LOVED IT SO . ... str_replace ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.strtoupper.html -- 4.2 Кб -- 03.02.2002
Похожие документы

719. strtolower
PHP Manual . ... PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) strtolower -- Make a string lowercase . string strtolower ( string str) . Returns string with all alphabetic characters converted to lowercase. ... This means that in i.e. the default "C" locale, characters such as umlaut-A (д) will not be converted. Example 1. strtolower() example . str = "Mary Had A Little Lamb and She LOVED It So"; $str = strtolower($str); print $str; # Prints mary had a little lamb and she loved it so . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.strtolower.html -- 4.2 Кб -- 03.02.2002
Похожие документы

720. strtok
... PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) strtok -- Tokenize string . ... string = "This is\tan example\nstring"; /* Use tab and newline as tokenizing characters as well */ $tok = strtok($string," \n\t"); while ($tok) { echo "Word=$tok<br>"; $tok = strtok(" "); } . ... The behavior when an empty part was found changed with PHP 4.1.0. ... Example 2. ... first_token = strtok('/something', '/'); $second_token = strtok('/'); var_dump ($first_token, $second_token); /* Output: string(0) "" string(9) "something" */...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.strtok.html -- 6.1 Кб -- 03.02.2002
Похожие документы

В начало ] Пред. | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | След.В конец ]

Rambler's Top100 RFBR Яндекс цитирования