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

В начало ] Пред. | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | След.В конец ]

Упорядочить по: URL  |  дате изменения
961. satellite_exception_id
PHP Manual . Prev . Next . PHP 4 >= 4.0.3) satellite_exception_id -- Get the repository id for the latest exception. string satellite_exception_id ( (void);) . ... This function is EXPERIMENTAL . The behaviour of this function, the name of this function, and anything else documented about this function may change in a future release of PHP without notice. ... Return a repository id string. E.g. "IDL:MyException:1.0".) For example usage see satellite_caught_exception() . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.satellite-exception-id.html -- 4.1 Кб -- 03.02.2002
Похожие документы

962. satellite_caught_exception
PHP Manual . ... PHP 4 >= 4.0.3) satellite_caught_exception -- See if an exception was caught from the previous function . ... Redo From Start. */ exception OutOfCheeseError { int parameter; } interface AnotherInterface { void AskWhy() raises (OutOfCheeseError); } . ... php $obj = new OrbitObject ($ior); $obj->AskWhy(); if (satellite_caught_exception()) { if ("IDL:OutOfCheeseError:1.0" == satellite_exception_id()) { $exception = satellite_exception_value(); echo $exception->parameter; } } ?> ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.satellite-caught-exception.html -- 5.0 Кб -- 03.02.2002
Похожие документы

963. OrbitEnum
PHP Manual . ... unknown) OrbitEnum -- Use CORBA enums . ... This function is EXPERIMENTAL . ... This class represents the enumeration identified with the id parameter. The id can be either the name of the enumeration (e.g "MyEnum"), or the full repository id (e.g. "IDL:MyEnum:1.0"). Example 1. ... enum MyEnum { a,b,c,d,e }; . ... PHP code for accessing MyEnum . php $enum = new OrbitEnum ("MyEnum"); echo $enum->a; /* write 0 */ echo $enum->c; /* write 2 */ echo $enum->e; /* write 4 */ ?> ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/class.orbitenum.html -- 4.7 Кб -- 03.02.2002
Похожие документы

964. OrbitStruct
PHP Manual . ... new OrbitStruct ( string id) . ... struct MyStruct { short shortvalue; string stringvalue; }; interface SomeInterface { void SetValues (MyStruct values); MyStruct GetValues(); } . ... php $obj = new OrbitObject ($ior); $initial_values = new OrbitStruct ("IDL:MyStruct:1.0"); $initial_values->shortvalue = 42; $initial_values->stringvalue = "HGTTG"; $obj->SetValues ($initial_values); $values = $obj->GetValues(); echo $values->shortvalue; echo $values->stringvalue; ?> ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/class.orbitstruct.html -- 5.1 Кб -- 03.02.2002
Похожие документы

965. OrbitObject
PHP Manual . ... unknown) OrbitObject -- Access CORBA objects . new OrbitObject ( string ior) . ... This function is EXPERIMENTAL . ... The ior parameter should be a string containing the IOR (Interoperable Object Reference) that identifies the remote object. ... interface MyInterface { void SetInfo (string info); string GetInfo(); attribute int value; } . ... php $obj = new OrbitObject ($ior); $obj->SetInfo ("A 2GooD object"); echo $obj->GetInfo(); $obj->value = 42; echo $obj->value; ?> ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/class.orbitobject.html -- 4.8 Кб -- 03.02.2002
Похожие документы

966. sql_regcase
... PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) sql_regcase -- Make regular expression for case insensitive match . string sql_regcase ( string string) . Returns a valid regular expression which will match string , ignoring case. This expression is string with each character converted to a bracket expression; this bracket expression contains that character's uppercase and lowercase form if applicable, otherwise it contains the original character twice. Example 1. sql_regcase() Example . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.sql-regcase.html -- 4.3 Кб -- 03.02.2002
Похожие документы

967. Regular Expression Functions (POSIX Extended)
... Note: PHP also supports regular expressions using a Perl-compatible syntax using the PCRE functions . Those functions support non-greedy matching, assertions, conditional subpatterns, and a number of other features not supported by the POSIX-extended regular expression syntax. ... Regular expressions are used for complex string manipulation in PHP. ... ereg_replace() . ... PHP uses the POSIX extended regular expressions as defined by POSIX 1003.2. ... ereg_replace -- Replace regular expression . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/ref.regex.html -- 7.0 Кб -- 03.02.2002
Похожие документы

968. spliti
. PHP Manual . Prev . Next . (PHP 4 ) spliti -- Split string into array by regular expression case insensitive . array spliti ( string pattern, string string [, int limit]) . This function is identical to split() except that this ignores case distinction when matching alphabetic characters. See also preg_spliti() , split() , explode() , and implode() . Prev . Home . Next . split . Up . sql_regcase
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.spliti.html -- 3.7 Кб -- 03.02.2002
Похожие документы

969. split
PHP Manual . ... PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) split -- split string into array by regular expression . array split ( string pattern, string string [, int limit]) . Note: preg_split() , which uses a Perl-compatible regular expression syntax, is often a faster alternative to split() . Returns an array of strings, each of which is a substring of string formed by splitting it on boundaries formed by the regular expression pattern . ... Please note that pattern is a regular expression. ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.split.html -- 7.6 Кб -- 03.02.2002
Похожие документы

970. eregi_replace
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) eregi_replace -- replace regular expression case insensitive . string eregi_replace ( string pattern, string replacement, string string) . This function is identical to ereg_replace() except that this ignores case distinction when matching alphabetic characters. See also ereg() , eregi() , and ereg_replace() . Prev . Home . Next . eregi . Up . split
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.eregi-replace.html -- 3.6 Кб -- 03.02.2002
Похожие документы

971. eregi
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) eregi -- case insensitive regular expression match . int eregi ( string pattern, string string [, array regs]) . This function is identical to ereg() except that this ignores case distinction when matching alphabetic characters. Example 1. eregi() example . if (eregi("z", $string)) { echo "'$string' contains a 'z' or 'Z'!"; } . See also ereg() , ereg_replace() , and eregi_replace() . Prev . Home . Next . ereg_replace . Up . eregi_replace
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.eregi.html -- 4.1 Кб -- 03.02.2002
Похожие документы

972. ereg
PHP Manual . ... PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) ereg -- Regular expression match . int ereg ( string pattern, string string [, array regs]) . ... Searches a string for matches to the regular expression given in pattern . If matches are found for parenthesized substrings of pattern and the function is called with the third argument regs , the matches will be stored in the elements of the array regs . ... If no matches are found, $regs will not be altered by ereg() . ... ereg_replace ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.ereg.html -- 6.1 Кб -- 03.02.2002
Похожие документы

973. ereg_replace
PHP Manual . ... string ereg_replace ( string pattern, string replacement, string string) . ... Example 1. ereg_replace() Example . ... php /* This will not work as expected. */ $num = 4; $string = "This string has four words."; $string = ereg_replace('four', $num, $string); echo $string; /* Output: 'This string has words.' This will work. */ $num = '4'; $string = "This string has four words."; $string = ereg_replace('four', $num, $string); echo $string; /* Output: 'This string has 4 words.' ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.ereg-replace.html -- 7.2 Кб -- 03.02.2002
Похожие документы

974. qdom_tree
PHP Manual . Prev . Next . PHP 4 >= 4.0.4) qdom_tree -- creates a tree of an xml string . object qdom_tree ( string ) . Warning . This function is EXPERIMENTAL . The behaviour of this function, the name of this function, and anything else documented about this function may change in a future release of PHP without notice. Be warned and use this function at your own risk. ... This function is currently not documented, only the argument list is available. ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.qdom-tree.html -- 3.8 Кб -- 03.02.2002
Похожие документы

975. qtdom functions
. PHP Manual . Prev . Next . Table of Contents . qdom_tree -- creates a tree of an xml string . qdom_error -- Returns the error string from the last QDOM operation or FALSE if no errors occured . Prev . Home . Next . Pattern Syntax . Up . qdom_tree
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/ref.qtdom.html -- 3.3 Кб -- 03.02.2002
Похожие документы

976. qdom_error
PHP Manual . Prev . Next . PHP 4 >= 4.0.5) qdom_error -- Returns the error string from the last QDOM operation or FALSE if no errors occured . string qdom_error ( (void);) . Warning . This function is EXPERIMENTAL . The behaviour of this function, the name of this function, and anything else documented about this function may change in a future release of PHP without notice. ... This function is currently not documented, only the argument list is available. ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.qdom-error.html -- 3.9 Кб -- 03.02.2002
Похожие документы

977. Pattern Syntax
... The PCRE library is a set of functions that implement regular expression pattern matching using the same syntax and semantics as Perl 5, with just a few differences (see below). ... A regular expression is a pattern that is matched against a subject string from left to right. Most characters stand for themselves in a pattern, and match the corresponding charac- ters in the subject. ... For example, if you want to match a "*" character, you write "\*" in the pattern. ... character class. ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/pcre.pattern.syntax.html -- 119.2 Кб -- 03.02.2002
Похожие документы

978. Regular Expression Functions (Perl-Compatible)
PHP Manual . ... Note: PHP also supports regular expressions using a POSIX-extended syntax using the POSIX-extended regex functions. The syntax for patterns used in these functions closely resembles Perl. The expression should be enclosed in the delimiters, a forward slash (/), for example. ... See Pattern Modifiers . ... i)php[34]/ . ... Note: The Perl-compatible regular expression functions are available in PHP 4 and in PHP 3.0.9 and up. ... preg_match -- Perform a regular expression match . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/ref.pcre.html -- 6.5 Кб -- 03.02.2002
Похожие документы

979. Pattern Modifiers
... unknown) Pattern Modifiers -- Describes possible modifiers in regex patterns . ... If this modifier is set, letters in the pattern match both upper and lower case letters. m (PCRE_MULTILINE) . By default, PCRE treats the subject string as consisting of a single "line" of characters (even if it actually contains several newlines). ... If there are no "\n" characters in a subject string, or no occurrences of ^ or $ in a pattern, setting this modifier has no effect. s (PCRE_DOTALL) . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/pcre.pattern.modifiers.html -- 9.1 Кб -- 03.02.2002
Похожие документы

980. preg_grep
... PHP 4 >= 4.0.0) preg_grep -- Return array entries that match the pattern . array preg_grep ( string pattern, array input) . preg_grep() returns the array consisting of the elements of the input array that match the given pattern . Since PHP 4.0.4, the results returned by preg_grep() are indexed using the keys from the input array. ... Example 1. preg_grep() example . return all array elements // containing floating point numbers $fl_array = preg_grep ("/^(\d+)?\.\d+$/", $array); . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.preg-grep.html -- 4.2 Кб -- 03.02.2002
Похожие документы

В начало ] Пред. | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | След.В конец ]

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