'LDAP\Connection'], default: 'resource')] $ldap, #[Available(from: '7.1', to: '7.1')] string $user = "", #[Available(from: '7.2', to: '7.2')] string $user, #[Available(from: '7.3')] string $user = "", #[Available(from: '7.1', to: '7.1')] string $old_password = "", #[Available(from: '7.2', to: '7.2')] string $old_password, #[Available(from: '7.3')] string $old_password = "", #[Available(from: '7.1', to: '7.1')] string $new_password = "", #[Available(from: '7.2', to: '7.2')] string $new_password, #[Available(from: '7.3')] string $new_password = "", #[Available(from: '7.3')] &$controls = null ): string|bool {} /** * Refresh extended operation helper * @link https://www.php.net/manual/en/function.ldap-exop-refresh.php * @param resource $ldap An LDAP link identifier, returned by ldap_connect(). * @param string $dn dn of the entry to refresh. * @param int $ttl $ttl Time in seconds (between 1 and 31557600) that the client requests that the entry exists in the directory before being automatically removed. * @return int|false 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. * @since 7.3 */ function ldap_exop_refresh(#[PhpVersionAware(['8.1' => 'LDAP\Connection'], default: 'resource')] $ldap, string $dn, int $ttl): int|false {} /** * WHOAMI extended operation helper * @link https://www.php.net/manual/en/function.ldap-exop-whoami.php * @param resource $ldap An LDAP link identifier, returned by ldap_connect(). * @return string|false The data returned by the server, or FALSE on error. * @since 7.2 */ function ldap_exop_whoami(#[PhpVersionAware(['8.1' => 'LDAP\Connection'], default: 'resource')] $ldap): string|false {} /** * Performs an extended operation on the specified link with reqoid the OID of the operation and reqdata the data. * @link https://www.php.net/manual/en/function.ldap-exop.php * @param resource $ldap An LDAP link identifier, returned by ldap_connect(). * @param string $request_oid The extended operation request OID. You may use one of LDAP_EXOP_START_TLS, LDAP_EXOP_MODIFY_PASSWD, LDAP_EXOP_REFRESH, LDAP_EXOP_WHO_AM_I, LDAP_EXOP_TURN, or a string with the OID of the operation you want to send. * @param string|null $request_data [optional] The extended operation request data. May be NULL for some operations like LDAP_EXOP_WHO_AM_I, may also need to be BER encoded. * @param array|null $controls If provided, a password policy request control is send with the request and this is filled with an array of LDAP Controls returned with the request. * @param string &$response_data [optional] Will be filled with the extended operation response data if provided. If not provided you may use ldap_parse_exop on the result object later to get this data. * @param string &$response_oid [optional] Will be filled with the response OID if provided, usually equal to the request OID. * @return resource|bool When used with retdata, returns TRUE on success or FALSE on error. When used without retdata, returns a result identifier or FALSE on error. * @since 7.2 */ #[PhpVersionAware(['8.1' => 'LDAP\Result|bool'], default: 'resource|bool')] function ldap_exop(#[PhpVersionAware(['8.1' => 'LDAP\Connection'], default: 'resource')] $ldap, string $request_oid, ?string $request_data, #[PhpVersionAware(["8.0" => "null|array"], default: "array")] $controls = null, &$response_data, &$response_oid) {} /** * Parse LDAP extended operation data from result object result * @link https://www.php.net/manual/en/function.ldap-parse-exop.php * @param resource $ldap An LDAP link identifier, returned by ldap_connect(). * @param resource $result An LDAP result resource, returned by ldap_exop(). * @param string &$response_data Will be filled by the response data. * @param string &$response_oid Will be filled by the response OID. * @return bool Returns TRUE on success or FALSE on failure. * @since 7.2 */ function ldap_parse_exop( #[PhpVersionAware(['8.1' => 'LDAP\Connection'], default: 'resource')] $ldap, #[PhpVersionAware(['8.1' => 'LDAP\Result'], default: 'resource')] $result, #[Available(from: '7.2', to: '7.4')] &$response_data, #[Available(from: '8.0')] &$response_data = null, #[Available(from: '7.2', to: '7.4')] &$response_oid, #[Available(from: '8.0')] &$response_oid = null ): bool {} /** * Translate 8859 characters to t61 characters * @link https://www.php.net/manual/en/function.ldap-8859-to-t61.php * @param string $value * @return string */ function ldap_8859_to_t61(string $value): string {} /** * Translate t61 characters to 8859 characters * @link https://www.php.net/manual/en/function.ldap-t61-to-8859.php * @param string $value * @return string */ function ldap_t61_to_8859(string $value): string {} /** * Connect to an LDAP server * @link https://php.net/manual/en/function.ldap-connect.php * @param string|null $uri [optional]
* If you are using OpenLDAP 2.x.x you can specify a URL instead of the * hostname. To use LDAP with SSL, compile OpenLDAP 2.x.x with SSL * support, configure PHP with SSL, and set this parameter as * ldaps://hostname/. *
* @param int $port [optional]* The port to connect to. Not used when using URLs. *
* @return resource|false a positive LDAP link identifier on success, or FALSE on error. * When OpenLDAP 2.x.x is used, ldap_connect will always * return a resource as it does not actually connect but just * initializes the connecting parameters. The actual connect happens with * the next calls to ldap_* funcs, usually with * ldap_bind. * ** If no arguments are specified then the link identifier of the already * opened link will be returned. */ #[PhpVersionAware(['8.1' => 'LDAP\Connection|false'], default: 'resource|false')] function ldap_connect(?string $uri, int $port = 389) {} /** * Alias of ldap_unbind * @link https://php.net/manual/en/function.ldap-close.php * @param resource $ldap * @return bool */ function ldap_close(#[PhpVersionAware(['8.1' => 'LDAP\Connection'], default: 'resource')] $ldap): bool {} /** * Bind to LDAP directory * @link https://php.net/manual/en/function.ldap-bind.php * @param resource $ldap
* An LDAP link identifier, returned by ldap_connect. *
* @param string|null $dn [optional] * @param string|null $password [optional] * @return bool TRUE on success or FALSE on failure. */ function ldap_bind(#[PhpVersionAware(['8.1' => 'LDAP\Connection'], default: 'resource')] $ldap, ?string $dn, ?string $password): bool {} /** * Bind to LDAP directory * Does the same thing as ldap_bind() but returns the LDAP result resource to be parsed with ldap_parse_result(). * @link https://php.net/manual/en/function.ldap-bind.php * @param resource $ldap* An LDAP link identifier, returned by ldap_connect. *
* @param string|null $dn [optional] * @param string|null $password [optional] * @param array|null $controls Array of LDAP Controls to send with the request. * @return resource|false * @since 7.3 */ #[PhpVersionAware(['8.1' => 'LDAP\Result|false'], default: 'resource|false')] function ldap_bind_ext( #[PhpVersionAware(['8.1' => 'LDAP\Connection'], default: 'resource')] $ldap, ?string $dn, ?string $password, #[PhpVersionAware(["8.0" => "null|array"], default: "array")] $controls = null ) {} /** * Bind to LDAP directory using SASL * @link https://php.net/manual/en/function.ldap-sasl-bind.php * @param resource $ldap * @param string $binddn [optional] * @param string $password [optional] * @param string $sasl_mech [optional] * @param string $sasl_realm [optional] * @param string $sasl_authc_id [optional] * @param string $sasl_authz_id [optional] * @param string $props [optional] * @return bool TRUE on success or FALSE on failure. */ function ldap_sasl_bind(#[PhpVersionAware(['8.1' => 'LDAP\Connection'], default: 'resource')] $ldap, $binddn = null, $password = null, $sasl_mech = null, $sasl_realm = null, $sasl_authc_id = null, $sasl_authz_id = null, $props = null): bool {} /** * Unbind from LDAP directory * @link https://php.net/manual/en/function.ldap-unbind.php * @param resource $ldap* An LDAP link identifier, returned by ldap_connect. *
* @return bool TRUE on success or FALSE on failure. */ function ldap_unbind(#[PhpVersionAware(['8.1' => 'LDAP\Connection'], default: 'resource')] $ldap): bool {} /** * Read an entry * @link https://php.net/manual/en/function.ldap-read.php * @param resource $ldap* An LDAP link identifier, returned by ldap_connect. *
* @param array|array|string $base* The base DN for the directory. *
* @param array|string $filter* An empty filter is not allowed. If you want to retrieve absolutely all * information for this entry, use a filter of * objectClass=*. If you know which entry types are * used on the directory server, you might use an appropriate filter such * as objectClass=inetOrgPerson. *
* @param array $attributes* An array of the required attributes, e.g. array("mail", "sn", "cn"). * Note that the "dn" is always returned irrespective of which attributes * types are requested. *
** Using this parameter is much more efficient than the default action * (which is to return all attributes and their associated values). * The use of this parameter should therefore be considered good * practice. *
* @param int $attributes_only* Should be set to 1 if only attribute types are wanted. If set to 0 * both attributes types and attribute values are fetched which is the * default behaviour. *
* @param int $sizelimit [optional]* Enables you to limit the count of entries fetched. Setting this to 0 * means no limit. *
** This parameter can NOT override server-side preset sizelimit. You can * set it lower though. *
** Some directory server hosts will be configured to return no more than * a preset number of entries. If this occurs, the server will indicate * that it has only returned a partial results set. This also occurs if * you use this parameter to limit the count of fetched entries. *
* @param int $timelimit [optional]* Sets the number of seconds how long is spend on the search. Setting * this to 0 means no limit. *
** This parameter can NOT override server-side preset timelimit. You can * set it lower though. *
* @param int $deref* Specifies how aliases should be handled during the search. It can be * one of the following: * LDAP_DEREF_NEVER - (default) aliases are never * dereferenced.
* @param array|null $controls Array of LDAP Controls to send with the request. * @return resource|false a search result identifier or FALSE on error. */ #[PhpVersionAware(['8.1' => 'LDAP\Result|array|false'], default: 'resource|false')] function ldap_read( #[PhpVersionAware(['8.1' => 'LDAP\Connection'], default: 'resource')] $ldap, array|string $base, array|string $filter, array $attributes = [], int $attributes_only = 0, int $sizelimit = -1, int $timelimit = -1, int $deref = 0, #[Available(from: '7.3')] #[PhpVersionAware(["8.0" => "null|array"], default: "array")] $controls = null ) {} /** * Single-level search * @link https://php.net/manual/en/function.ldap-list.php * @param resource $ldap* An LDAP link identifier, returned by ldap_connect. *
* @param array|array|string $base* The base DN for the directory. *
* @param array|string $filter * @param array $attributes* An array of the required attributes, e.g. array("mail", "sn", "cn"). * Note that the "dn" is always returned irrespective of which attributes * types are requested. *
** Using this parameter is much more efficient than the default action * (which is to return all attributes and their associated values). * The use of this parameter should therefore be considered good * practice. *
* @param int $attributes_only* Should be set to 1 if only attribute types are wanted. If set to 0 * both attributes types and attribute values are fetched which is the * default behaviour. *
* @param int $sizelimit [optional]* Enables you to limit the count of entries fetched. Setting this to 0 * means no limit. *
** This parameter can NOT override server-side preset sizelimit. You can * set it lower though. *
** Some directory server hosts will be configured to return no more than * a preset number of entries. If this occurs, the server will indicate * that it has only returned a partial results set. This also occurs if * you use this parameter to limit the count of fetched entries. *
* @param int $timelimit [optional]* Sets the number of seconds how long is spend on the search. Setting * this to 0 means no limit. *
** This parameter can NOT override server-side preset timelimit. You can * set it lower though. *
* @param int $deref* Specifies how aliases should be handled during the search. It can be * one of the following: * LDAP_DEREF_NEVER - (default) aliases are never * dereferenced.
* @param array|null $controls Array of LDAP Controls to send with the request. * @return resource|false a search result identifier or FALSE on error. */ #[PhpVersionAware(['8.1' => 'LDAP\Result|array|false'], default: 'resource|false')] function ldap_list( #[PhpVersionAware(['8.1' => 'LDAP\Connection'], default: 'resource')] $ldap, array|string $base, array|string $filter, array $attributes = [], int $attributes_only = 0, int $sizelimit = -1, int $timelimit = -1, int $deref = 0, #[Available(from: '7.3')] #[PhpVersionAware(["8.0" => "null|array"], default: "array")] $controls = null ) {} /** * Search LDAP tree * @link https://php.net/manual/en/function.ldap-search.php * @param resource $ldap* An LDAP link identifier, returned by ldap_connect. *
* @param array|string $base* The base DN for the directory. *
* @param array|string $filter* The search filter can be simple or advanced, using boolean operators in * the format described in the LDAP documentation (see the Netscape Directory SDK for full * information on filters). *
* @param array $attributes* An array of the required attributes, e.g. array("mail", "sn", "cn"). * Note that the "dn" is always returned irrespective of which attributes * types are requested. *
** Using this parameter is much more efficient than the default action * (which is to return all attributes and their associated values). * The use of this parameter should therefore be considered good * practice. *
* @param int $attributes_only* Should be set to 1 if only attribute types are wanted. If set to 0 * both attributes types and attribute values are fetched which is the * default behaviour. *
* @param int $sizelimit [optional]* Enables you to limit the count of entries fetched. Setting this to 0 * means no limit. *
** This parameter can NOT override server-side preset sizelimit. You can * set it lower though. *
** Some directory server hosts will be configured to return no more than * a preset number of entries. If this occurs, the server will indicate * that it has only returned a partial results set. This also occurs if * you use this parameter to limit the count of fetched entries. *
* @param int $timelimit [optional]* Sets the number of seconds how long is spend on the search. Setting * this to 0 means no limit. *
** This parameter can NOT override server-side preset timelimit. You can * set it lower though. *
* @param int $deref* Specifies how aliases should be handled during the search. It can be * one of the following: * LDAP_DEREF_NEVER - (default) aliases are never * dereferenced.
* @param array|null $controls Array of LDAP Controls to send with the request. * @return resource|false a search result identifier or FALSE on error. */ #[PhpVersionAware(['8.1' => 'LDAP\Result|array|false'], default: 'resource|false')] function ldap_search( #[PhpVersionAware(['8.1' => 'LDAP\Connection'], default: 'resource')] $ldap, array|string $base, array|string $filter, array $attributes = [], int $attributes_only = 0, int $sizelimit = -1, int $timelimit = -1, int $deref = 0, #[Available(from: '7.3')] #[PhpVersionAware(["8.0" => "null|array"], default: "array")] $controls = null ) {} /** * Free result memory * @link https://php.net/manual/en/function.ldap-free-result.php * @param resource|Result $result * @return bool TRUE on success or FALSE on failure. */ function ldap_free_result( #[Available(from: '5.3', to: '8.0')] $ldap, #[Available(from: '8.1')] Result $result ): bool {} /** * Count the number of entries in a search * @link https://php.net/manual/en/function.ldap-count-entries.php * @param resource $ldap* An LDAP link identifier, returned by ldap_connect. *
* @param resource $result* The internal LDAP result. *
* @return int|false number of entries in the result or FALSE on error. */ #[PhpVersionAware(["8.0" => "int"], default: "int|false")] function ldap_count_entries( #[PhpVersionAware(['8.1' => 'LDAP\Connection'], default: 'resource')] $ldap, #[PhpVersionAware(['8.1' => 'LDAP\Result'], default: 'resource')] $result ) {} /** * Return first result id * @link https://php.net/manual/en/function.ldap-first-entry.php * @param resource $ldap* An LDAP link identifier, returned by ldap_connect. *
* @param resource $result * @return resource|false the result entry identifier for the first entry on success and * FALSE on error. */ #[PhpVersionAware(['8.1' => 'LDAP\ResultEntry|false'], default: 'resource|false')] function ldap_first_entry( #[PhpVersionAware(['8.1' => 'LDAP\Connection'], default: 'resource')] $ldap, #[PhpVersionAware(['8.1' => 'LDAP\Result'], default: 'resource')] $result ) {} /** * Get next result entry * @link https://php.net/manual/en/function.ldap-next-entry.php * @param resource $ldap* An LDAP link identifier, returned by ldap_connect. *
* @param resource $entry * @return resource|false entry identifier for the next entry in the result whose entries * are being read starting with ldap_first_entry. If * there are no more entries in the result then it returns FALSE. */ #[PhpVersionAware(['8.1' => 'LDAP\ResultEntry|false'], default: 'resource|false')] function ldap_next_entry( #[PhpVersionAware(['8.1' => 'LDAP\Connection'], default: 'resource')] $ldap, #[PhpVersionAware(['8.1' => 'LDAP\ResultEntry'], default: 'resource')] $entry ) {} /** * Get all result entries * @link https://php.net/manual/en/function.ldap-get-entries.php * @param resource $ldap* An LDAP link identifier, returned by ldap_connect. *
* @param resource $result * @return array|false a complete result information in a multi-dimensional array on * success and FALSE on error. * ** The structure of the array is as follows. * The attribute index is converted to lowercase. (Attributes are * case-insensitive for directory servers, but not when used as * array indices.) *
* return_value["count"] = number of entries in the result * return_value[0] : refers to the details of first entry * return_value[i]["dn"] = DN of the ith entry in the result * return_value[i]["count"] = number of attributes in ith entry * return_value[i][j] = NAME of the jth attribute in the ith entry in the result * return_value[i]["attribute"]["count"] = number of values for * attribute in ith entry * return_value[i]["attribute"][j] = jth value of attribute in ith entry **/ function ldap_get_entries( #[PhpVersionAware(['8.1' => 'LDAP\Connection'], default: 'resource')] $ldap, #[PhpVersionAware(['8.1' => 'LDAP\Result'], default: 'resource')] $result ): array|false {} /** * Return first attribute * @link https://php.net/manual/en/function.ldap-first-attribute.php * @param resource $ldap
* An LDAP link identifier, returned by ldap_connect. *
* @param resource $entry * @return string|false the first attribute in the entry on success and FALSE on * error. */ function ldap_first_attribute( #[PhpVersionAware(['8.1' => 'LDAP\Connection'], default: 'resource')] $ldap, #[PhpVersionAware(['8.1' => 'LDAP\ResultEntry'], default: 'resource')] $entry ): string|false {} /** * Get the next attribute in result * @link https://php.net/manual/en/function.ldap-next-attribute.php * @param resource $ldap* An LDAP link identifier, returned by ldap_connect. *
* @param resource $entry * @return string|false the next attribute in an entry on success and FALSE on * error. */ function ldap_next_attribute( #[PhpVersionAware(['8.1' => 'LDAP\Connection'], default: 'resource')] $ldap, #[PhpVersionAware(['8.1' => 'LDAP\ResultEntry'], default: 'resource')] $entry ): string|false {} /** * Get attributes from a search result entry * @link https://php.net/manual/en/function.ldap-get-attributes.php * @param resource $ldap* An LDAP link identifier, returned by ldap_connect. *
* @param resource $entry * @return array a complete entry information in a multi-dimensional array * on success and FALSE on error. */ function ldap_get_attributes( #[PhpVersionAware(['8.1' => 'LDAP\Connection'], default: 'resource')] $ldap, #[PhpVersionAware(['8.1' => 'LDAP\ResultEntry'], default: 'resource')] $entry ): array {} /** * Get all values from a result entry * @link https://php.net/manual/en/function.ldap-get-values.php * @param resource $ldap* An LDAP link identifier, returned by ldap_connect. *
* @param resource $entry * @param string $attribute * @return array|false an array of values for the attribute on success and FALSE on * error. The number of values can be found by indexing "count" in the * resultant array. Individual values are accessed by integer index in the * array. The first index is 0. * ** LDAP allows more than one entry for an attribute, so it can, for example, * store a number of email addresses for one person's directory entry all * labeled with the attribute "mail" * return_value["count"] = number of values for attribute * return_value[0] = first value of attribute * return_value[i] = ith value of attribute */ function ldap_get_values( #[PhpVersionAware(['8.1' => 'LDAP\Connection'], default: 'resource')] $ldap, #[PhpVersionAware(['8.1' => 'LDAP\ResultEntry'], default: 'resource')] $entry, string $attribute ): array|false {} /** * Get all binary values from a result entry * @link https://php.net/manual/en/function.ldap-get-values-len.php * @param resource $ldap
* An LDAP link identifier, returned by ldap_connect. *
* @param resource $entry * @param string $attribute * @return array|false an array of values for the attribute on success and FALSE on * error. Individual values are accessed by integer index in the array. The * first index is 0. The number of values can be found by indexing "count" * in the resultant array. */ function ldap_get_values_len( #[PhpVersionAware(['8.1' => 'LDAP\Connection'], default: 'resource')] $ldap, #[PhpVersionAware(['8.1' => 'LDAP\ResultEntry'], default: 'resource')] $entry, string $attribute ): array|false {} /** * Get the DN of a result entry * @link https://php.net/manual/en/function.ldap-get-dn.php * @param resource $ldap* An LDAP link identifier, returned by ldap_connect. *
* @param resource $entry * @return string|false the DN of the result entry and FALSE on error. */ function ldap_get_dn( #[PhpVersionAware(['8.1' => 'LDAP\Connection'], default: 'resource')] $ldap, #[PhpVersionAware(['8.1' => 'LDAP\ResultEntry'], default: 'resource')] $entry ): string|false {} /** * Splits DN into its component parts * @link https://php.net/manual/en/function.ldap-explode-dn.php * @param string $dn* The distinguished name of an LDAP entity. *
* @param int $with_attrib* Used to request if the RDNs are returned with only values or their * attributes as well. To get RDNs with the attributes (i.e. in * attribute=value format) set with_attrib to 0 * and to get only values set it to 1. *
* @return array|false an array of all DN components. * The first element in this array has count key and * represents the number of returned values, next elements are numerically * indexed DN components. */ #[ArrayShape(["count" => "int"])] function ldap_explode_dn(string $dn, int $with_attrib): array|false {} /** * Convert DN to User Friendly Naming format * @link https://php.net/manual/en/function.ldap-dn2ufn.php * @param string $dn* The distinguished name of an LDAP entity. *
* @return string|false the user friendly name. */ function ldap_dn2ufn(string $dn): string|false {} /** * Add entries to LDAP directory * @link https://php.net/manual/en/function.ldap-add.php * @param resource $ldap* An LDAP link identifier, returned by ldap_connect. *
* @param string $dn* The distinguished name of an LDAP entity. *
* @param array $entry
* An array that specifies the information about the entry. The values in
* the entries are indexed by individual attributes.
* In case of multiple values for an attribute, they are indexed using
* integers starting with 0.
*
* $entree["attribut1"] = "value";
* $entree["attribut2"][0] = "value1";
* $entree["attribut2"][1] = "value2";
*
*
* An LDAP link identifier, returned by ldap_connect. *
* @param string $dn* The distinguished name of an LDAP entity. *
* @param array $entry
* An array that specifies the information about the entry. The values in
* the entries are indexed by individual attributes.
* In case of multiple values for an attribute, they are indexed using
* integers starting with 0.
*
* $entree["attribut1"] = "value";
* $entree["attribut2"][0] = "value1";
* $entree["attribut2"][1] = "value2";
*
*
* An LDAP link identifier, returned by ldap_connect. *
* @param string $dn* The distinguished name of an LDAP entity. *
* @param array|null $controls Array of LDAP Controls to send with the request. * @return bool TRUE on success or FALSE on failure. */ function ldap_delete( #[PhpVersionAware(['8.1' => 'LDAP\Connection'], default: 'resource')] $ldap, string $dn, #[Available(from: '7.3')] #[PhpVersionAware(["8.0" => "null|array"], default: "array")] $controls = null ): bool {} /** * Delete an entry from a directory * Does the same thing as ldap_delete() but returns the LDAP result resource to be parsed with ldap_parse_result(). * @link https://php.net/manual/en/function.ldap-delete-ext.php * @param resource $ldap* An LDAP link identifier, returned by ldap_connect. *
* @param string $dn* The distinguished name of an LDAP entity. *
* @param array|null $controls Array of LDAP Controls to send with the request. * @return resource|false * @since 7.3 */ #[PhpVersionAware(['8.1' => 'LDAP\Result|false'], default: 'resource|false')] function ldap_delete_ext( #[PhpVersionAware(['8.1' => 'LDAP\Connection'], default: 'resource')] $ldap, string $dn, #[PhpVersionAware(["8.0" => "null|array"], default: "array")] $controls = null ) {} /** * This function is an alias of: ldap_mod_replace(). * Replace attribute values with new ones * @link https://www.php.net/manual/en/function.ldap-modify.php * @param resource $ldap* An LDAP link identifier, returned by ldap_connect. *
* @param string $dn* The distinguished name of an LDAP entity. *
* @param array $entry * @param array|null $controls Array of LDAP Controls to send with the request. * @return bool TRUE on success or FALSE on failure. */ function ldap_modify( #[PhpVersionAware(['8.1' => 'LDAP\Connection'], default: 'resource')] $ldap, string $dn, array $entry, #[Available(from: '7.3')] #[PhpVersionAware(["8.0" => "null|array"], default: "array")] $controls = null ): bool {} /** * Add attribute values to current attributes * @link https://php.net/manual/en/function.ldap-mod-add.php * @param resource $ldap* An LDAP link identifier, returned by ldap_connect. *
* @param string $dn* The distinguished name of an LDAP entity. *
* @param array $entry * @param array|null $controls Array of LDAP Controls to send with the request. * @return bool TRUE on success or FALSE on failure. */ function ldap_mod_add( #[PhpVersionAware(['8.1' => 'LDAP\Connection'], default: 'resource')] $ldap, string $dn, array $entry, #[Available(from: '7.3')] #[PhpVersionAware(["8.0" => "null|array"], default: "array")] $controls = null ): bool {} /** * Add attribute values to current attributes * Does the same thing as ldap_mod_add() but returns the LDAP result resource to be parsed with ldap_parse_result(). * @link https://php.net/manual/en/function.ldap-mod-add-ext.php * @param resource $ldap* An LDAP link identifier, returned by ldap_connect. *
* @param string $dn* The distinguished name of an LDAP entity. *
* @param array $entry * @param array|null $controls Array of LDAP Controls to send with the request. * @return resource|false * @since 7.3 */ #[PhpVersionAware(['8.1' => 'LDAP\Result|false'], default: 'resource|false')] function ldap_mod_add_ext( #[PhpVersionAware(['8.1' => 'LDAP\Connection'], default: 'resource')] $ldap, string $dn, array $entry, #[PhpVersionAware(["8.0" => "null|array"], default: "array")] $controls = null ) {} /** * Replace attribute values with new ones * @link https://php.net/manual/en/function.ldap-mod-replace.php * @param resource $ldap* An LDAP link identifier, returned by ldap_connect. *
* @param string $dn* The distinguished name of an LDAP entity. *
* @param array $entry * @param array|null $controls Array of LDAP Controls to send with the request. * @return bool TRUE on success or FALSE on failure. */ function ldap_mod_replace( #[PhpVersionAware(['8.1' => 'LDAP\Connection'], default: 'resource')] $ldap, string $dn, array $entry, #[Available(from: '7.3')] #[PhpVersionAware(["8.0" => "null|array"], default: "array")] $controls = null ): bool {} /** * Replace attribute values with new ones * Does the same thing as ldap_mod_replace() but returns the LDAP result resource to be parsed with ldap_parse_result(). * @link https://php.net/manual/en/function.ldap-mod-replace-ext.php * @param resource $ldap* An LDAP link identifier, returned by ldap_connect. *
* @param string $dn* The distinguished name of an LDAP entity. *
* @param array $entry * @param array|null $controls Array of LDAP Controls to send with the request. * @return resource|false * @since 7.3 */ #[PhpVersionAware(['8.1' => 'LDAP\Result|false'], default: 'resource|false')] function ldap_mod_replace_ext(#[PhpVersionAware(['8.1' => 'LDAP\Connection'], default: 'resource')] $ldap, string $dn, array $entry, #[PhpVersionAware(["8.0" => "null|array"], default: "array")] $controls = null) {} /** * Delete attribute values from current attributes * @link https://php.net/manual/en/function.ldap-mod-del.php * @param resource $ldap* An LDAP link identifier, returned by ldap_connect. *
* @param string $dn* The distinguished name of an LDAP entity. *
* @param array $entry * @param array|null $controls Array of LDAP Controls to send with the request. * @return bool TRUE on success or FALSE on failure. */ function ldap_mod_del( #[PhpVersionAware(['8.1' => 'LDAP\Connection'], default: 'resource')] $ldap, string $dn, array $entry, #[Available(from: '7.3')] #[PhpVersionAware(["8.0" => "null|array"], default: "array")] $controls = null ): bool {} /** * Delete attribute values from current attributes * Does the same thing as ldap_mod_del() but returns the LDAP result resource to be parsed with ldap_parse_result(). * @link https://php.net/manual/en/function.ldap-mod-del-ext.php * @param resource $ldap* An LDAP link identifier, returned by ldap_connect. *
* @param string $dn* The distinguished name of an LDAP entity. *
* @param array $entry * @param array|null $controls Array of LDAP Controls to send with the request. * @return resource|false * @since 7.3 */ #[PhpVersionAware(['8.1' => 'LDAP\Result|false'], default: 'resource|false')] function ldap_mod_del_ext(#[PhpVersionAware(['8.1' => 'LDAP\Connection'], default: 'resource')] $ldap, string $dn, array $entry, #[PhpVersionAware(["8.0" => "null|array"], default: "array")] $controls = null) {} /** * Return the LDAP error number of the last LDAP command * @link https://php.net/manual/en/function.ldap-errno.php * @param resource $ldap* An LDAP link identifier, returned by ldap_connect. *
* @return int Return the LDAP error number of the last LDAP command for this * link. */ function ldap_errno(#[PhpVersionAware(['8.1' => 'LDAP\Connection'], default: 'resource')] $ldap): int {} /** * Convert LDAP error number into string error message * @link https://php.net/manual/en/function.ldap-err2str.php * @param int $errno* The error number. *
* @return string the error message, as a string. */ function ldap_err2str(int $errno): string {} /** * Return the LDAP error message of the last LDAP command * @link https://php.net/manual/en/function.ldap-error.php * @param resource $ldap* An LDAP link identifier, returned by ldap_connect. *
* @return string string error message. */ function ldap_error(#[PhpVersionAware(['8.1' => 'LDAP\Connection'], default: 'resource')] $ldap): string {} /** * Compare value of attribute found in entry specified with DN * @link https://php.net/manual/en/function.ldap-compare.php * @param resource $ldap* An LDAP link identifier, returned by ldap_connect. *
* @param string $dn* The distinguished name of an LDAP entity. *
* @param string $attribute* The attribute name. *
* @param string $value* The compared value. *
* @param array|null $controls Array of LDAP Controls to send with the request. * @return int|bool TRUE if value matches otherwise returns * FALSE. Returns -1 on error. */ function ldap_compare( #[PhpVersionAware(['8.1' => 'LDAP\Connection'], default: 'resource')] $ldap, string $dn, string $attribute, string $value, #[Available(from: '7.3')] #[PhpVersionAware(["8.0" => "null|array"], default: "array")] $controls = null ): int|bool {} /** * Sort LDAP result entries * @link https://php.net/manual/en/function.ldap-sort.php * @param resource $ldap* An LDAP link identifier, returned by ldap_connect. *
* @param resource $result* An search result identifier, returned by * ldap_search. *
* @param string $sortfilter* The attribute to use as a key in the sort. *
* @removed 8.0 * @return bool */ #[Deprecated(since: "7.0")] function ldap_sort(#[PhpVersionAware(['8.1' => 'LDAP\Connection'], default: 'resource')] $ldap, $result, string $sortfilter): bool {} /** * Modify the name of an entry * @link https://php.net/manual/en/function.ldap-rename.php * @param resource $ldap* An LDAP link identifier, returned by ldap_connect. *
* @param string $dn* The distinguished name of an LDAP entity. *
* @param string $new_rdn* The new RDN. *
* @param string $new_parent* The new parent/superior entry. *
* @param bool $delete_old_rdn* If TRUE the old RDN value(s) is removed, else the old RDN value(s) * is retained as non-distinguished values of the entry. *
* @param array|null $controls Array of LDAP Controls to send with the request. * @return bool TRUE on success or FALSE on failure. */ function ldap_rename( #[PhpVersionAware(['8.1' => 'LDAP\Connection'], default: 'resource')] $ldap, string $dn, string $new_rdn, string $new_parent, bool $delete_old_rdn, #[Available(from: '7.3')] #[PhpVersionAware(["8.0" => "null|array"], default: "array")] $controls = null ): bool {} /** * Modify the name of an entry * Does the same thing as ldap_rename() but returns the LDAP result resource to be parsed with ldap_parse_result(). * @link https://php.net/manual/en/function.ldap-rename-ext.php * @param resource $ldap* An LDAP link identifier, returned by ldap_connect. *
* @param string $dn* The distinguished name of an LDAP entity. *
* @param string $new_rdn* The new RDN. *
* @param string $new_parent* The new parent/superior entry. *
* @param bool $delete_old_rdn* If TRUE the old RDN value(s) is removed, else the old RDN value(s) * is retained as non-distinguished values of the entry. *
* @param array|null $controls Array of LDAP Controls to send with the request. * @return resource|false * @since 7.3 */ #[PhpVersionAware(['8.1' => 'LDAP\Result|false'], default: 'resource|false')] function ldap_rename_ext(#[PhpVersionAware(['8.1' => 'LDAP\Connection'], default: 'resource')] $ldap, string $dn, string $new_rdn, string $new_parent, bool $delete_old_rdn, #[PhpVersionAware(["8.0" => "null|array"], default: "array")] $controls = null) {} /** * Get the current value for given option * @link https://php.net/manual/en/function.ldap-get-option.php * @param resource $ldap* An LDAP link identifier, returned by ldap_connect. *
* @param int $option* The parameter option can be one of: *
* This will be set to the option value. *
* @return bool TRUE on success or FALSE on failure. */ function ldap_get_option( #[PhpVersionAware(['8.1' => 'LDAP\Connection'], default: 'resource')] $ldap, int $option, #[Available(from: '5.3', to: '7.4')] &$value, #[Available(from: '8.0')] &$value = null ): bool {} /** * Set the value of the given option * @link https://php.net/manual/en/function.ldap-set-option.php * @param resource $ldap* An LDAP link identifier, returned by ldap_connect. *
* @param int $option* The parameter option can be one of: *
* LDAP_OPT_SERVER_CONTROLS and * LDAP_OPT_CLIENT_CONTROLS require a list of * controls, this means that the value must be an array of controls. A * control consists of an oid identifying the control, * an optional value, and an optional flag for * criticality. In PHP a control is given by an * array containing an element with the key oid * and string value, and two optional elements. The optional * elements are key value with string value * and key iscritical with boolean value. * iscritical defaults to FALSE * if not supplied. See draft-ietf-ldapext-ldap-c-api-xx.txt * for details. See also the second example below. *
* @param mixed $value* The new value for the specified option. *
* @return bool TRUE on success or FALSE on failure. */ function ldap_set_option( #[PhpVersionAware(['8.1' => 'LDAP\Connection|null'], default: 'resource')] $ldap, int $option, $value ): bool {} /** * Return first reference * @link https://php.net/manual/en/function.ldap-first-reference.php * @param resource $ldap * @param resource $result * @return resource */ #[PhpVersionAware(['8.1' => 'LDAP\ResultEntry|false'], default: 'resource')] function ldap_first_reference( #[PhpVersionAware(['8.1' => 'LDAP\Connection'], default: 'resource')] $ldap, #[PhpVersionAware(['8.1' => 'LDAP\Result'], default: 'resource')] $result ) {} /** * Get next reference * @link https://php.net/manual/en/function.ldap-next-reference.php * @param resource $ldap * @param resource $entry * @return resource */ #[PhpVersionAware(['8.1' => 'LDAP\ResultEntry|false'], default: 'resource')] function ldap_next_reference( #[PhpVersionAware(['8.1' => 'LDAP\Connection'], default: 'resource')] $ldap, #[PhpVersionAware(['8.1' => 'LDAP\ResultEntry'], default: 'resource')] $entry ) {} /** * Extract information from reference entry * @link https://php.net/manual/en/function.ldap-parse-reference.php * @param resource $ldap * @param resource $entry * @param array &$referrals * @return bool */ function ldap_parse_reference( #[PhpVersionAware(['8.1' => 'LDAP\Connection'], default: 'resource')] $ldap, #[PhpVersionAware(['8.1' => 'LDAP\ResultEntry'], default: 'resource')] $entry, &$referrals ): bool {} /** * Extract information from result * @link https://php.net/manual/en/function.ldap-parse-result.php * @param resource $ldap * @param resource $result * @param int &$error_code * @param string &$matched_dn [optional] * @param string &$error_message [optional] * @param array &$referrals [optional] * @param array &$controls An array of LDAP Controls which have been sent with the response. * @return bool */ function ldap_parse_result( #[PhpVersionAware(['8.1' => 'LDAP\Connection'], default: 'resource')] $ldap, #[PhpVersionAware(['8.1' => 'LDAP\Result'], default: 'resource')] $result, &$error_code, &$matched_dn, &$error_message, &$referrals, #[Available(from: '7.3')] &$controls = null ): bool {} /** * Start TLS * @link https://php.net/manual/en/function.ldap-start-tls.php * @param resource $ldap * @return bool */ function ldap_start_tls(#[PhpVersionAware(['8.1' => 'LDAP\Connection'], default: 'resource')] $ldap): bool {} /** * Set a callback function to do re-binds on referral chasing * @link https://php.net/manual/en/function.ldap-set-rebind-proc.php * @param resource $ldap * @param callable|null $callback * @return bool */ function ldap_set_rebind_proc(#[PhpVersionAware(['8.1' => 'LDAP\Connection'], default: 'resource')] $ldap, ?callable $callback): bool {} /** * Send LDAP pagination control * @link https://php.net/manual/en/function.ldap-control-paged-result.php * @param resource $ldap* An LDAP link identifier, returned by ldap_connect. *
* @param int $pagesize* The number of entries by page. *
* @param bool $iscritical [optional]* Indicates whether the pagination is critical of not. * If true and if the server doesn't support pagination, the search * will return no result. *
* @param string $cookie [optional]* An opaque structure sent by the server * (ldap_control_paged_result_response). *
* @return bool TRUE on success or FALSE on failure. * @since 5.4 * @removed 8.0 */ #[Deprecated(since: "7.4")] function ldap_control_paged_result(#[PhpVersionAware(['8.1' => 'LDAP\Connection'], default: 'resource')] $ldap, int $pagesize, $iscritical = false, $cookie = ""): bool {} /** * Retrieve the LDAP pagination cookie * @link https://php.net/manual/en/function.ldap-control-paged-result-response.php * @param resource $ldap* An LDAP link identifier, returned by ldap_connect. *
* @param resource $result * @param string &$cookie [optional]* An opaque structure sent by the server. *
* @param int &$estimated [optional]* The estimated number of entries to retrieve. *
* @return bool TRUE on success or FALSE on failure. * @since 5.4 * @removed 8.0 */ #[Deprecated(since: "7.4")] function ldap_control_paged_result_response(#[PhpVersionAware(['8.1' => 'LDAP\Connection'], default: 'resource')] $ldap, $result, &$cookie = null, &$estimated = null): bool {} /** * Escape a string for use in an LDAP filter or DN * @param string $value The value to escape. * @param string $ignore [optional] Characters to ignore when escaping. * @param int $flags [optional] The context the escaped string will be used in: LDAP_ESCAPE_FILTER for filters to be used with ldap_search(), or LDAP_ESCAPE_DN for DNs. If neither flag is passed, all chars are escaped. * @return string * @since 5.6 */ function ldap_escape(string $value, string $ignore = "", int $flags = 0): string {} /** * (PHP 5.4 >= 5.4.26, PHP 5.5 >= 5.5.10, PHP 5.6 >= 5.6.0) * Batch and execute modifications on an LDAP entry * @link https://php.net/manual/en/function.ldap-modify-batch.php * @param $ldap* An LDAP link identifier, returned by * {@see ldap_connect()}. *
* @param string $dnThe distinguished name of an LDAP entity.
* @param array $modifications_infoAn array that specifies the modifications to make. Each entry in this * array is an associative array with two or three keys: * attrib maps to the name of the attribute to modify, * modtype maps to the type of modification to perform, * and (depending on the type of modification) values * maps to an array of attribute values relevant to the modification. *
** Possible values for modtype include: *
** Each value specified through values is added (as * an additional value) to the attribute named by * attrib. *
** Each value specified through values is removed * from the attribute named by attrib. Any value of * the attribute not contained in the values array * will remain untouched. *
** All values are removed from the attribute named by * attrib. A values entry must * not be provided. *
** All current values of the attribute named by * attrib are replaced with the values specified * through values. *
** Note that any value for attrib must be a string, any * value for values must be an array of strings, and * any value for modtype must be one of the * LDAP_MODIFY_BATCH_* constants listed above. *
* @param array|null $controls Array of LDAP Controls to send with the request. * @return bool TRUE on success or FALSE on failure. * @since 5.4 */ function ldap_modify_batch( #[PhpVersionAware(['8.1' => 'LDAP\Connection'], default: 'resource')] $ldap, string $dn, array $modifications_info, #[Available(from: '7.3')] #[PhpVersionAware(["8.0" => "null|array"], default: "array")] $controls = null ): bool {} /** * @param resource $ldap * @param resource $result * @return int returns the number of reference messages in a search result. * @since 8.0 */ function ldap_count_references( #[PhpVersionAware(['8.1' => 'LDAP\Connection'], default: 'resource')] $ldap, #[PhpVersionAware(['8.1' => 'LDAP\Result'], default: 'resource')] $result ): int {} define('LDAP_ESCAPE_FILTER', 1); define('LDAP_ESCAPE_DN', 2); define('LDAP_DEREF_NEVER', 0); define('LDAP_DEREF_SEARCHING', 1); define('LDAP_DEREF_FINDING', 2); define('LDAP_DEREF_ALWAYS', 3); define('LDAP_MODIFY_BATCH_REMOVE', 2); define('LDAP_MODIFY_BATCH_ADD', 1); define('LDAP_MODIFY_BATCH_REMOVE_ALL', 18); define('LDAP_MODIFY_BATCH_REPLACE', 3); define('LDAP_OPT_X_TLS_REQUIRE_CERT', 24582); define('LDAP_OPT_X_TLS_NEVER', 0); define('LDAP_OPT_X_TLS_HARD', 1); define('LDAP_OPT_X_TLS_DEMAND', 2); define('LDAP_OPT_X_TLS_ALLOW', 3); define('LDAP_OPT_X_TLS_TRY', 4); define('LDAP_OPT_X_TLS_CERTFILE', 24580); define('LDAP_OPT_X_TLS_CIPHER_SUITE', 24584); define('LDAP_OPT_X_TLS_KEYFILE', 24581); define('LDAP_OPT_X_TLS_DHFILE', 24590); define('LDAP_OPT_X_TLS_CRLFILE', 24592); define('LDAP_OPT_X_TLS_RANDOM_FILE', 24585); define('LDAP_OPT_X_TLS_CRLCHECK', 24587); define('LDAP_OPT_X_TLS_CRL_NONE', 0); define('LDAP_OPT_X_TLS_CRL_PEER', 1); define('LDAP_OPT_X_TLS_CRL_ALL', 2); define('LDAP_OPT_X_TLS_PROTOCOL_MIN', 24583); define('LDAP_OPT_X_TLS_PROTOCOL_SSL2', 512); define('LDAP_OPT_X_TLS_PROTOCOL_SSL3', 768); define('LDAP_OPT_X_TLS_PROTOCOL_TLS1_0', 769); define('LDAP_OPT_X_TLS_PROTOCOL_TLS1_1', 770); define('LDAP_OPT_X_TLS_PROTOCOL_TLS1_2', 771); define('LDAP_OPT_X_TLS_PACKAGE', 24593); define('LDAP_OPT_X_KEEPALIVE_IDLE', 25344); define('LDAP_OPT_X_KEEPALIVE_PROBES', 25345); define('LDAP_OPT_X_KEEPALIVE_INTERVAL', 25346); define('LDAP_OPT_X_SASL_USERNAME', 24844); define('LDAP_OPT_X_SASL_NOCANON', 24843); /** * Specifies alternative rules for following aliases at the server. * @link https://php.net/manual/en/ldap.constants.php */ define('LDAP_OPT_DEREF', 2); /** ** Specifies the maximum number of entries that can be * returned on a search operation. *
* The actual size limit for operations is also bounded * by the server's configured maximum number of return entries. * The lesser of these two settings is the actual size limit. * @link https://php.net/manual/en/ldap.constants.php */ define('LDAP_OPT_SIZELIMIT', 3); /** * Specifies the number of seconds to wait for search results. * The actual time limit for operations is also bounded * by the server's configured maximum time. * The lesser of these two settings is the actual time limit. * @link https://php.net/manual/en/ldap.constants.php */ define('LDAP_OPT_TIMELIMIT', 4); /** * Option for ldap_set_option to allow setting network timeout. * (Available as of PHP 5.3.0) * @link https://php.net/manual/en/ldap.constants.php */ define('LDAP_OPT_NETWORK_TIMEOUT', 20485); /** * Specifies the LDAP protocol to be used (V2 or V3). * @link https://php.net/manual/en/ldap.constants.php */ define('LDAP_OPT_PROTOCOL_VERSION', 17); define('LDAP_OPT_ERROR_NUMBER', 49); /** * Specifies whether to automatically follow referrals returned * by the LDAP server. * @link https://php.net/manual/en/ldap.constants.php */ define('LDAP_OPT_REFERRALS', 8); define('LDAP_OPT_RESTART', 9); define('LDAP_OPT_HOST_NAME', 48); define('LDAP_OPT_ERROR_STRING', 50); define('LDAP_OPT_MATCHED_DN', 51); /** * Specifies a default list of server controls to be sent with each request. * @link https://php.net/manual/en/ldap.constants.php */ define('LDAP_OPT_SERVER_CONTROLS', 18); /** * Specifies a default list of client controls to be processed with each request. * @link https://php.net/manual/en/ldap.constants.php */ define('LDAP_OPT_CLIENT_CONTROLS', 19); /** * Specifies a bitwise level for debug traces. * @link https://php.net/manual/en/ldap.constants.php */ define('LDAP_OPT_DEBUG_LEVEL', 20481); define('LDAP_OPT_X_SASL_MECH', 24832); define('LDAP_OPT_X_SASL_REALM', 24833); define('LDAP_OPT_X_SASL_AUTHCID', 24834); define('LDAP_OPT_X_SASL_AUTHZID', 24835); /** * Specifies the path of the directory containing CA certificates. * @link https://php.net/manual/en/ldap.constants.php * @since 7.1 */ define('LDAP_OPT_X_TLS_CACERTDIR', 24579); /** * Specifies the full-path of the CA certificate file. * @link https://php.net/manual/en/ldap.constants.php * @since 7.1 */ define('LDAP_OPT_X_TLS_CACERTFILE', 24578); define('LDAP_MODIFY_BATCH_ATTRIB', 'attrib'); define('LDAP_MODIFY_BATCH_MODTYPE', 'modtype'); define('LDAP_MODIFY_BATCH_VALUES', 'values'); define('LDAP_OPT_TIMEOUT', 20482); define('LDAP_OPT_DIAGNOSTIC_MESSAGE', 50); /** * Control Constant - Manage DSA IT (» RFC 3296) * @link https://php.net/manual/en/ldap.constants.php * @since 7.2 */ define("LDAP_CONTROL_MANAGEDSAIT", "2.16.840.1.113730.3.4.2"); /** * Control Constant - Proxied Authorization (» RFC 4370) * @link https://php.net/manual/en/ldap.constants.php * @since 7.2 */ define("LDAP_CONTROL_PROXY_AUTHZ", "2.16.840.1.113730.3.4.18"); /** * Control Constant - Subentries (» RFC 3672) * @link https://php.net/manual/en/ldap.constants.php * @since 7.2 */ define("LDAP_CONTROL_SUBENTRIES", "1.3.6.1.4.1.4203.1.10.1"); /** * Control Constant - Filter returned values (» RFC 3876) * @link https://php.net/manual/en/ldap.constants.php * @since 7.2 */ define("LDAP_CONTROL_VALUESRETURNFILTER", "1.2.826.0.1.3344810.2.3"); /** * Control Constant - Assertion (» RFC 4528) * @link https://php.net/manual/en/ldap.constants.php * @since 7.2 */ define("LDAP_CONTROL_ASSERT", "1.3.6.1.1.12"); /** * Control Constant - Pre read (» RFC 4527) * @link https://php.net/manual/en/ldap.constants.php * @since 7.2 */ define("LDAP_CONTROL_PRE_READ", "1.3.6.1.1.13.1"); /** * Control Constant - Post read (» RFC 4527) * @link https://php.net/manual/en/ldap.constants.php * @since 7.2 */ define("LDAP_CONTROL_POST_READ", "1.3.6.1.1.13.2"); /** * Control Constant - Sort request (» RFC 2891) * @link https://php.net/manual/en/ldap.constants.php * @since 7.2 */ define("LDAP_CONTROL_SORTREQUEST", "1.2.840.113556.1.4.473"); /** * Control Constant - Sort response (» RFC 2891) * @link https://php.net/manual/en/ldap.constants.php * @since 7.2 */ define("LDAP_CONTROL_SORTRESPONSE", "1.2.840.113556.1.4.474"); /** * Control Constant - Paged results (» RFC 2696) * @link https://php.net/manual/en/ldap.constants.php * @since 7.2 */ define("LDAP_CONTROL_PAGEDRESULTS", "1.2.840.113556.1.4.319"); /** * Control Constant - Content Synchronization Operation (» RFC 4533) * @link https://php.net/manual/en/ldap.constants.php * @since 7.2 */ define("LDAP_CONTROL_SYNC", "1.3.6.1.4.1.4203.1.9.1.1"); /** * Control Constant - Content Synchronization Operation State (» RFC 4533) * @link https://php.net/manual/en/ldap.constants.php * @since 7.2 */ define("LDAP_CONTROL_SYNC_STATE", "1.3.6.1.4.1.4203.1.9.1.2"); /** * Control Constant - Content Synchronization Operation Done (» RFC 4533) * @link https://php.net/manual/en/ldap.constants.php * @since 7.2 */ define("LDAP_CONTROL_SYNC_DONE", "1.3.6.1.4.1.4203.1.9.1.3"); /** * Control Constant - Don't Use Copy (» RFC 6171) * @link https://php.net/manual/en/ldap.constants.php * @since 7.2 */ define("LDAP_CONTROL_DONTUSECOPY", "1.3.6.1.1.22"); /** * Control Constant - Password Policy Request * @link https://php.net/manual/en/ldap.constants.php * @since 7.2 */ define("LDAP_CONTROL_PASSWORDPOLICYREQUEST", "1.3.6.1.4.1.42.2.27.8.5.1"); /** * Control Constant - Password Policy Response * @link https://php.net/manual/en/ldap.constants.php * @since 7.2 */ define("LDAP_CONTROL_PASSWORDPOLICYRESPONSE", "1.3.6.1.4.1.42.2.27.8.5.1"); /** * Control Constant - Active Directory Incremental Values * @link https://php.net/manual/en/ldap.constants.php * @since 7.2 */ define("LDAP_CONTROL_X_INCREMENTAL_VALUES", "1.2.840.113556.1.4.802"); /** * Control Constant - Active Directory Domain Scope * @link https://php.net/manual/en/ldap.constants.php * @since 7.2 */ define("LDAP_CONTROL_X_DOMAIN_SCOPE", "1.2.840.113556.1.4.1339"); /** * Control Constant - Active Directory Permissive Modify * @link https://php.net/manual/en/ldap.constants.php * @since 7.2 */ define("LDAP_CONTROL_X_PERMISSIVE_MODIFY", "1.2.840.113556.1.4.1413"); /** * Control Constant - Active Directory Search Options * @link https://php.net/manual/en/ldap.constants.php * @since 7.2 */ define("LDAP_CONTROL_X_SEARCH_OPTIONS", "1.2.840.113556.1.4.1340"); /** * Control Constant - Active Directory Tree Delete * @link https://php.net/manual/en/ldap.constants.php * @since 7.2 */ define("LDAP_CONTROL_X_TREE_DELETE", "1.2.840.113556.1.4.805"); /** * Control Constant - Active Directory Extended DN * @link https://php.net/manual/en/ldap.constants.php * @since 7.2 */ define("LDAP_CONTROL_X_EXTENDED_DN", "1.2.840.113556.1.4.529"); /** * Control Constant - Virtual List View Request * @link https://php.net/manual/en/ldap.constants.php * @since 7.2 */ define("LDAP_CONTROL_VLVREQUEST", "2.16.840.1.113730.3.4.9"); /** * Control Constant - Virtual List View Response * @link https://php.net/manual/en/ldap.constants.php * @since 7.2 */ define("LDAP_CONTROL_VLVRESPONSE", "2.16.840.1.113730.3.4.10"); /** * Extended Operation constant - Modify password */ define("LDAP_EXOP_MODIFY_PASSWD", "1.3.6.1.4.1.4203.1.11.1"); /** * Extended Operation Constant - Refresh */ define("LDAP_EXOP_REFRESH", "1.3.6.1.4.1.1466.101.119.1"); /** * Extended Operation constant - Start TLS */ define("LDAP_EXOP_START_TLS", "1.3.6.1.4.1.1466.20037"); /** * Extended Operation Constant - Turn */ define("LDAP_EXOP_TURN", "1.3.6.1.1.19"); /** * Extended Operation Constant - WHOAMI */ define("LDAP_EXOP_WHO_AM_I", "1.3.6.1.4.1.4203.1.11.3"); /** * @since 7.3 */ define('LDAP_CONTROL_AUTHZID_REQUEST', '2.16.840.1.113730.3.4.16'); /** * @since 7.3 */ define('LDAP_CONTROL_AUTHZID_RESPONSE', '2.16.840.1.113730.3.4.15'); // End of ldap v.