ldap_exop_refresh

(PHP 7 >= 7.3.0, PHP 8)

ldap_exop_refreshRefresh extended operation helper

Açıklama

ldap_exop_refresh(LDAP\Connection$ldap, string$dn, int$ttl): int|false

Performs a Refresh extended operation and returns the data.

Bağımsız Değişkenler

ldap

ldap_list() veya ldap_connect() işlevinden dönen LDAP\Connection nesnesi.

dn

dn of the entry to refresh.

ttl

Time in seconds (between 1 and 31557600) that the client requests that the entry exists in the directory before being automatically removed.

Dönen Değerler

From RFC: The responseTtl field is the time in seconds which the server chooses to have as the time-to-live field for that entry. It must not be any smaller than that which the client requested, and it may be larger. However, to allow servers to maintain a relatively accurate directory, and to prevent clients from abusing the dynamic extensions, servers are permitted to shorten a client-requested time-to-live value, down to a minimum of 86400 seconds (one day). false will be returned on error.

Sürüm Bilgisi

Sürüm: Açıklama
8.1.0ldap bağımsız değişkeni artık LDAP\Connection nesnesi kabul ediyor, evvelce resource türünde geçerli bir ldap link değeri kabul ederdi.

Ayrıca Bakınız

To Top