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

В начало ] Пред. | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | След.В конец ]

Упорядочить по: URL  |  дате изменения
3021. com_release
. PHP Manual . Prev . Next . (PHP 4 >= 4.1.0) com_release -- Decreases the components reference counter. void com_release ( (void);) . Decreases the components reference counter. Prev . Home . Next . com_addref . Up . com_isenum
[ Сохраненная копия ]  Ссылки http://oit.cmc.msu.ru/php/function.com-release.html -- 3.2 Кб -- 03.02.2002
Похожие документы

3022. com_propset
. PHP Manual . Prev . Next . (3.0.3 - 3.0.18 only, PHP 4 >= 4.0.5) com_propset -- Assigns a value to a COM component's property . void com_propset ( resource com_object, string property, mixed value) . This function is an alias for com_set() . Prev . Home . Next . com_propput . Up . com_set
[ Сохраненная копия ]  Ссылки http://oit.cmc.msu.ru/php/function.com-propset.html -- 3.3 Кб -- 03.02.2002
Похожие документы

3023. com_set
. PHP Manual . Prev . Next . (3.0.3 - 3.0.18 only, PHP 4 >= 4.0.5) com_set -- Assigns a value to a COM component's property . void com_set ( resource com_object, string property, mixed value) . Sets the value of the property of the COM component referenced by com_object . Returns the newly set value if succeeded, FALSE on error. Prev . Home . Next . com_propset . Up . com_addref
[ Сохраненная копия ]  Ссылки http://oit.cmc.msu.ru/php/function.com-set.html -- 3.5 Кб -- 03.02.2002
Похожие документы

3024. com_get
. PHP Manual . Prev . Next . (3.0.3 - 3.0.18 only, PHP 4 >= 4.0.5) com_get -- Gets the value of a COM Component's property . mixed com_get ( resource com_object, string property) . Returns the value of the property of the COM component referenced by com_object . Returns FALSE on error. Prev . Home . Next . com_propget . Up . com_propput
[ Сохраненная копия ]  Ссылки http://oit.cmc.msu.ru/php/function.com-get.html -- 3.4 Кб -- 03.02.2002
Похожие документы

3025. com_propget
. PHP Manual . Prev . Next . (3.0.3 - 3.0.18 only, PHP 4 >= 4.0.5) com_propget -- Gets the value of a COM Component's property . mixed com_propget ( resource com_object, string property) . This function is an alias for com_get() . Prev . Home . Next . com_invoke . Up . com_get
[ Сохраненная копия ]  Ссылки http://oit.cmc.msu.ru/php/function.com-propget.html -- 3.3 Кб -- 03.02.2002
Похожие документы

3026. com_propput
. PHP Manual . Prev . Next . (3.0.3 - 3.0.18 only, PHP 4 >= 4.0.5) com_propput -- Assigns a value to a COM component's property . void com_propput ( resource com_object, string property, mixed value) . This function is an alias for com_set() . Prev . Home . Next . com_get . Up . com_propset
[ Сохраненная копия ]  Ссылки http://oit.cmc.msu.ru/php/function.com-propput.html -- 3.3 Кб -- 03.02.2002
Похожие документы

3027. com_invoke
. PHP Manual . Prev . Next . (3.0.3 - 3.0.18 only) com_invoke -- Calls a COM component's method. mixed com_invoke ( resource com_object, string function_name [, mixed function parameters, ...]) . com_invoke() invokes a method of the COM component referenced by com_object . Returns FALSE on error, returns the function_name 's return value on success. Prev . Home . Next . com_load . Up . com_propget
[ Сохраненная копия ]  Ссылки http://oit.cmc.msu.ru/php/function.com-invoke.html -- 3.5 Кб -- 03.02.2002
Похожие документы

3028. com_load
. PHP Manual . Prev . Next . (3.0.3 - 3.0.18 only) com_load -- Creates a new reference to a COM component . string com_load ( string module name [, string server name [, int codepage]]) . com_load() creates a new COM component and returns a reference to it. Returns FALSE on failure. Possible values for codepage are CP_ACP , CP_MACCP , CP_OEMCP , CP_SYMBOL , CP_THREAD_ACP , CP_UTF7 and CP_UTF8 . Prev . Home . Next . VARIANT . Up . com_invoke
[ Сохраненная копия ]  Ссылки http://oit.cmc.msu.ru/php/function.com-load.html -- 3.7 Кб -- 03.02.2002
Похожие документы

3029. COM
... unknown) COM -- COM class . ... The COM class provides a framework to integrate (D)COM components into your php scripts. string COM::COM ( string module_name [, string server_name [, int codepage]]) . ... conn = new COM("ADODB.Connection") or die("Cannot start ADO"); $conn->Open("Provider=SQLOLEDB; Data Source=localhost; Initial Catalog=database; User ID=user; Password=password"); $rs = $conn->Execute("SELECT * FROM sometable"); // Recordset $num_columns = $rs->Fields->Count(); echo $num_columns . ...
[ Сохраненная копия ]  Ссылки http://oit.cmc.msu.ru/php/class.com.html -- 6.5 Кб -- 03.02.2002
Похожие документы

3030. VARIANT
... unknown) VARIANT -- VARIANT class . ... A simple container to wrap variables into VARIANT structures. string VARIANT::VARIANT ( [mixed value [, int type [, int codepage]]]) . ... initial value. if omitted an VT_EMPTY object is created. type . ... Possible values are VT_UI1 , VT_UI2 , VT_UI4 , VT_I1 , VT_I2 , VT_I4 , VT_R4 , VT_R8 , VT_INT , VT_UINT , VT_BOOL , VT_ERROR , VT_CY , VT_DATE , VT_BSTR , VT_DECIMAL , VT_UNKNOWN , VT_DISPATCH and VT_VARIANT . ... If omitted, the type of value is used. ...
[ Сохраненная копия ]  Ссылки http://oit.cmc.msu.ru/php/class.variant.html -- 5.5 Кб -- 03.02.2002
Похожие документы

3031. ccvs_command
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.2) ccvs_command -- Performs a command which is peculiar to a single protocol, and thus is not available in the general CCVS API . string ccvs_command ( string session, string type, string argval) . Warning . This function is currently not documented, only the argument list is available. Prev . Home . Next . ccvs_report . Up . ccvs_textvalue
[ Сохраненная копия ]  Ссылки http://oit.cmc.msu.ru/php/function.ccvs-command.html -- 3.5 Кб -- 03.02.2002
Похожие документы

3032. ccvs_textvalue
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.2) ccvs_textvalue -- Get text return value for previous function call . string ccvs_textvalue ( string session) . Warning . This function is currently not documented, only the argument list is available. Prev . Home . Next . ccvs_command . Up . COM support functions for Windows
[ Сохраненная копия ]  Ссылки http://oit.cmc.msu.ru/php/function.ccvs-textvalue.html -- 3.4 Кб -- 03.02.2002
Похожие документы

3033. CCVS API Functions
PHP Manual . ... These functions interface the CCVS API, allowing you to directly work with CCVS from your PHP scripts. CCVS is RedHat's solution to the "middle-man" in credit card processing. ... Using the CCVS module for PHP, you can process credit cards directly through CCVS via your PHP Scripts. ... If CCVS is in a non-standard location, run configure with: --with-ccvs=$ccvs_path , where $ccvs_path is the path to your CCVS installation. ... ccvs_new -- Create a new, blank transaction . ...
[ Сохраненная копия ]  Ссылки http://oit.cmc.msu.ru/php/ref.ccvs.html -- 7.1 Кб -- 03.02.2002
Похожие документы

3034. ccvs_lookup
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.2) ccvs_lookup -- Look up an item of a particular type in the database # . string ccvs_lookup ( string session, string invoice, int inum) . Warning . This function is currently not documented, only the argument list is available. Prev . Home . Next . ccvs_count . Up . ccvs_report
[ Сохраненная копия ]  Ссылки http://oit.cmc.msu.ru/php/function.ccvs-lookup.html -- 3.5 Кб -- 03.02.2002
Похожие документы

3035. ccvs_report
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.2) ccvs_report -- Return the status of the background communication process . string ccvs_report ( string session, string type) . Warning . This function is currently not documented, only the argument list is available. Prev . Home . Next . ccvs_lookup . Up . ccvs_command
[ Сохраненная копия ]  Ссылки http://oit.cmc.msu.ru/php/function.ccvs-report.html -- 3.4 Кб -- 03.02.2002
Похожие документы

3036. ccvs_count
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.2) ccvs_count -- Find out how many transactions of a given type are stored in the system . int ccvs_count ( string session, string type) . Warning . This function is currently not documented, only the argument list is available. Prev . Home . Next . ccvs_status . Up . ccvs_lookup
[ Сохраненная копия ]  Ссылки http://oit.cmc.msu.ru/php/function.ccvs-count.html -- 3.5 Кб -- 03.02.2002
Похожие документы

3037. ccvs_status
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.2) ccvs_status -- Check the status of an invoice . string ccvs_status ( string session, string invoice) . Warning . This function is currently not documented, only the argument list is available. Prev . Home . Next . ccvs_void . Up . ccvs_count
[ Сохраненная копия ]  Ссылки http://oit.cmc.msu.ru/php/function.ccvs-status.html -- 3.4 Кб -- 03.02.2002
Похожие документы

3038. ccvs_void
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.2) ccvs_void -- Perform a full reversal on a completed transaction . string ccvs_void ( string session, string invoice) . Warning . This function is currently not documented, only the argument list is available. Prev . Home . Next . ccvs_sale . Up . ccvs_status
[ Сохраненная копия ]  Ссылки http://oit.cmc.msu.ru/php/function.ccvs-void.html -- 3.4 Кб -- 03.02.2002
Похожие документы

3039. ccvs_reverse
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.2) ccvs_reverse -- Perform a full reversal on an already-processed authorization . string ccvs_reverse ( string session, string invoice) . Warning . This function is currently not documented, only the argument list is available. Prev . Home . Next . ccvs_return . Up . ccvs_sale
[ Сохраненная копия ]  Ссылки http://oit.cmc.msu.ru/php/function.ccvs-reverse.html -- 3.5 Кб -- 03.02.2002
Похожие документы

3040. ccvs_sale
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.2) ccvs_sale -- Transfer funds from the credit card holder to the merchant . string ccvs_sale ( string session, string invoice) . Warning . This function is currently not documented, only the argument list is available. Prev . Home . Next . ccvs_reverse . Up . ccvs_void
[ Сохраненная копия ]  Ссылки http://oit.cmc.msu.ru/php/function.ccvs-sale.html -- 3.4 Кб -- 03.02.2002
Похожие документы

В начало ] Пред. | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | След.В конец ]

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