Searched refs:ldap_set_rebind_proc (Results 1 – 7 of 7) sorted by relevance
/PHP-8.1/ext/ldap/tests/ |
H A D | ldap_set_rebind_proc_error.phpt | 2 ldap_set_rebind_proc() - Testing ldap_set_rebind_proc() that should fail 10 if (!function_exists("ldap_set_rebind_proc")) { 11 die("skip ldap_set_rebind_proc() does not exist"); 38 $result = ldap_set_rebind_proc($link, "rebind_proc_inexistent"); 44 ldap_set_rebind_proc(): Argument #2 ($callback) must be a valid callback or null, function "rebind_…
|
H A D | ldap_set_rebind_proc_basic.phpt | 2 ldap_set_rebind_proc() - Basic ldap_set_rebind_proc test 28 var_dump(ldap_set_rebind_proc($link, "rebind_proc")); 29 var_dump(ldap_set_rebind_proc($link, null));
|
H A D | ldap_unbind_variation.phpt | 2 ldap_unbind() - Variation of ldap_unbind() function using ldap_set_rebind_proc() 28 ldap_set_rebind_proc($link, "rebind_proc");
|
/PHP-8.1/ext/ldap/ |
H A D | config.m4 | 104 dnl Check for 3 arg ldap_set_rebind_proc 105 AC_CACHE_CHECK([for 3 arg ldap_set_rebind_proc], ac_cv_3arg_setrebindproc, 106 [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <ldap.h>]], [[ldap_set_rebind_proc(0,0,0)]])],
|
H A D | ldap_arginfo.h | 414 ZEND_FUNCTION(ldap_set_rebind_proc); 517 ZEND_FE(ldap_set_rebind_proc, arginfo_ldap_set_rebind_proc)
|
H A D | ldap.stub.php | 178 function ldap_set_rebind_proc(LDAP\Connection $ldap, ?callable $callback): bool {} function
|
H A D | ldap.c | 3843 PHP_FUNCTION(ldap_set_rebind_proc) in PHP_FUNCTION() argument 3862 ldap_set_rebind_proc(ld->link, NULL, NULL); in PHP_FUNCTION() 3869 ldap_set_rebind_proc(ld->link, _ldap_rebind_proc, (void *) link); in PHP_FUNCTION()
|
Completed in 33 milliseconds