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

В начало ] Пред. | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | След.В конец ]

Упорядочить по: URL  |  дате изменения
2121. ldap_get_values_len
... 3.0.13 - 3.0.18 only, PHP 4 >= 4.0.0) ldap_get_values_len -- Get all binary values from a result entry . array ldap_get_values_len ( int link_identifier, int result_entry_identifier, string attribute) . Returns an array of values for the attribute on success and FALSE on error. ldap_get_values_len() function is used to read all the values of the attribute in the entry in the result. entry is specified by the result_entry_identifier . ... The first index is 0. ... ldap_get_values . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.ldap-get-values-len.html -- 4.1 Кб -- 03.02.2002
Похожие документы

2122. ldap_get_values
... List all values of the "mail" attribute for a directory entry . ds is a valid link identifier for a directory server // $sr is a valid search result from a prior call to // one of the ldap directory search calls // $entry is a valid entry identifier from a prior call to // one of the calls that returns a directory entry $values = ldap_get_values($ds, $entry,"mail"); echo $values["count"]." email addresses for this entry.<p>"; for ($i=0; $i < $values["count"]; $i++) echo $values[$i]."<br>"; . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.ldap-get-values.html -- 5.7 Кб -- 03.02.2002
Похожие документы

2123. ldap_get_entries
... PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) ldap_get_entries -- Get all result entries . array ldap_get_entries ( int link_identifier, int result_identifier) . Returns a complete result information in a multi-dimenasional array on success and FALSE on error. ldap_get_entries() function is used to simplify reading multiple entries from the result, specified with result_identifier , and then reading the attributes and multiple values. ... return_value["count"] = number of entries in the result . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.ldap-get-entries.html -- 5.3 Кб -- 03.02.2002
Похожие документы

2124. ldap_get_option
... PHP 4 >= 4.0.4) ldap_get_option -- Get the current value for given option . bool ldap_get_option ( int link_identifier, int option, mixed retval) . ... Note: This function is only available when using OpenLDAP 2.x.x OR Netscape Directory SDK x.x, and was added in PHP 4.0.4 . ... ds is a valid link identifier for a directory server if (ldap_get_option($ds, LDAP_OPT_PROTOCOL_VERSION, $version)) echo "Using protocol version $version"; else echo "Unable to determine protocol version"; . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.ldap-get-option.html -- 4.8 Кб -- 03.02.2002
Похожие документы

2125. ldap_get_attributes
... PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) ldap_get_attributes -- Get attributes from a search result entry . ... return_value[0] = first attribute . ... ds is the link identifier for the directory // $sr is a valid search result from a prior call to // one of the ldap directory search calls $entry = ldap_first_entry($ds, $sr); $attrs = ldap_get_attributes($ds, $entry); echo $attrs["count"]." attributes held for this entry:<p>"; for ($i=0; $i<$attrs["count"]; $i++) echo $attrs[$i]."<br>"; . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.ldap-get-attributes.html -- 5.7 Кб -- 03.02.2002
Похожие документы

2126. ldap_get_dn
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) ldap_get_dn -- Get the DN of a result entry . string ldap_get_dn ( int link_identifier, int result_entry_identifier) . Returns the DN of the result entry and FALSE on error. ldap_get_dn() function is used to find out the DN of an entry in the result. Prev . Home . Next . ldap_get_attributes . Up . ldap_get_entries
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.ldap-get-dn.html -- 3.5 Кб -- 03.02.2002
Похожие документы

2127. ldap_first_attribute
PHP Manual . ... Next . PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) ldap_first_attribute -- Return first attribute . string ldap_first_attribute ( int link_identifier, int result_entry_identifier, int ber_identifier) . ... Remaining attributes are retrieved by calling ldap_next_attribute() successively. ber_identifier is the identifier to internal memory location pointer. ... The same ber_identifier is passed to the ldap_next_attribute() function, which modifies that pointer. ... ldap_first_entry ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.ldap-first-attribute.html -- 4.3 Кб -- 03.02.2002
Похожие документы

2128. ldap_first_entry
PHP Manual . Prev . Next . PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) ldap_first_entry -- Return first result id . int ldap_first_entry ( int link_identifier, int result_identifier) . ... Entries in the LDAP result are read sequentially using the ldap_first_entry() and ldap_next_entry() functions. ldap_first_entry() returns the entry identifier for first entry in the result. This entry identifier is then supplied to lap_next_entry() routine to get successive entries from the result. ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.ldap-first-entry.html -- 4.0 Кб -- 03.02.2002
Похожие документы

2129. ldap_free_result
PHP Manual . Prev . Next . PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) ldap_free_result -- Free result memory . int ldap_free_result ( int result_identifier) . Returns TRUE on success, FALSE on failure. ldap_free_result() frees up the memory allocated internally to store the result and pointed by the result_identifier . All result memory will be automatically freed when the script terminates. Typically all the memory allocated for the ldap result gets freed at the end of the script. ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.ldap-free-result.html -- 3.9 Кб -- 03.02.2002
Похожие документы

2130. ldap_explode_dn
... Prev . ... PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) ldap_explode_dn -- Splits DN into its component parts . array ldap_explode_dn ( string dn, int with_attrib) . ldap_explode_dn() function is used to split the DN returned by ldap_get_dn() and breaks it up into its component parts. Each part is known as Relative Distinguished Name, or RDN. ldap_explode_dn() returns an array of all those components. with_attrib is used to request if the RDNs are returned with only values or their attributes as well. ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.ldap-explode-dn.html -- 3.9 Кб -- 03.02.2002
Похожие документы

2131. ldap_errno
PHP Manual . ... 3.0.12 - 3.0.18 only, PHP 4 >= 4.0.0) ldap_errno -- Return the LDAP error number of the last LDAP command . ... Return the LDAP error number of the last LDAP command for this link. This function returns the standardized error number returned by the last LDAP command for the given link_identifier . This number can be converted into a textual error message using ldap_err2str() . ... See also ldap_err2str() and ldap_error() . ... ldap_err2str . ... ldap_error ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.ldap-errno.html -- 4.9 Кб -- 03.02.2002
Похожие документы

2132. ldap_error
... 3.0.12 - 3.0.18 only, PHP 4 >= 4.0.0) ldap_error -- Return the LDAP error message of the last LDAP command . string ldap_error ( int link_identifier) . ... This function returns the string error message explaining the error generated by the last LDAP command for the given link_identifier While LDAP errno numbers are standardized, different libraries return different or even localized textual error messages. Never check for a specific error message text, but always use an error number to check. ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.ldap-error.html -- 4.1 Кб -- 03.02.2002
Похожие документы

2133. ldap_delete
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) ldap_delete -- Delete an entry from a directory . int ldap_delete ( int link_identifier, string dn) . Returns TRUE on success, FALSE on failure. ldap_delete() function delete a particular entry in LDAP directory specified by dn . Prev . Home . Next . ldap_count_entries . Up . ldap_dn2ufn
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.ldap-delete.html -- 3.5 Кб -- 03.02.2002
Похожие документы

2134. ldap_dn2ufn
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) ldap_dn2ufn -- Convert DN to User Friendly Naming format . string ldap_dn2ufn ( string dn) . ldap_dn2ufn() function is used to turn a DN, specified by dn , into a more user-friendly form, stripping off type names. Prev . Home . Next . ldap_delete . Up . ldap_err2str
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.ldap-dn2ufn.html -- 3.4 Кб -- 03.02.2002
Похожие документы

2135. ldap_err2str
... 3.0.13 - 3.0.18 only, PHP 4 >= 4.0.0) ldap_err2str -- Convert LDAP error number into string error message . string ldap_err2str ( int errno) . ... This function returns the string error message explaining the error number errno . While LDAP errno numbers are standardized, different libraries return different or even localized textual error messages. Never check for a specific error message text, but always use an error number to check. See also ldap_errno() and ldap_error() . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.ldap-err2str.html -- 4.2 Кб -- 03.02.2002
Похожие документы

2136. ldap_connect
... PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) ldap_connect -- Connect to an LDAP server . int ldap_connect ( [string hostname [, int port]]) . Returns a positive LDAP link identifier on success, or FALSE on error. ldap_connect() establishes a connection to a LDAP server on a specified hostname and port . ... If only hostname is specified, then the port defaults to 389. ... To use LDAP with SSL, compile OpenLDAP 2.x.x with SSL support, configure PHP with SSL, and use ldaps://hostname/ as host parameter. ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.ldap-connect.html -- 4.2 Кб -- 03.02.2002
Похожие документы

2137. ldap_count_entries
. PHP Manual . Prev . Next . (PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) ldap_count_entries -- Count the number of entries in a search . int ldap_count_entries ( int link_identifier, int result_identifier) . Returns number of entries in the result or FALSE on error. ldap_count_entries() returns the number of entries stored in the result of previous search operations. result_identifier identifies the internal ldap result. Prev . Home . Next . ldap_connect . Up . ldap_delete
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.ldap-count-entries.html -- 3.6 Кб -- 03.02.2002
Похожие документы

2138. ldap_close
PHP Manual . Prev . Next . PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) ldap_close -- Close link to LDAP server . int ldap_close ( int link_identifier) . Returns TRUE on success, FALSE on failure. ldap_close() closes the link to the LDAP server that's associated with the specified link_identifier . This call is internally identical to ldap_unbind() . The LDAP API uses the call ldap_unbind() , so perhaps you should use this in preference to ldap_close() . ... ldap_bind . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.ldap-close.html -- 4.0 Кб -- 03.02.2002
Похожие документы

2139. ldap_compare
PHP Manual . ... PHP 4 >= 4.0.2) ldap_compare -- Compare value of attribute found in entry specified with DN . int ldap_compare ( int link_identifier, string dn, string attribute, string value) . ... Returns -1 on error. ldap_compare() is used to compare value of attribute to value of same attribute in LDAP directory entry specified with dn . The following example demonstrates how to check whether or not given password matches the one defined in DN specified entry. Example 1. ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.ldap-compare.html -- 5.3 Кб -- 03.02.2002
Похожие документы

2140. ldap_add
PHP Manual . ... PHP 3 <= 3.0.18, PHP 4 >= 4.0.0) ldap_add -- Add entries to LDAP directory . int ldap_add ( int link_identifier, string dn, array entry) . ... The ldap_add() function is used to add entries in the LDAP directory. The DN of the entry to be added is specified by dn . Array entry specifies the information about the entry. The values in the entries are indexed by individual attributes. ... entry["attribute2"][0] = value1 . entry["attribute2"][1] = value2 . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.ldap-add.html -- 4.9 Кб -- 03.02.2002
Похожие документы

В начало ] Пред. | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | След.В конец ]

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