Searched refs:ldap_set_rebind_proc (Results 1 – 8 of 8) sorted by relevance
/PHP-8.0/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 9 if (!function_exists("ldap_set_rebind_proc")) { 10 die("skip ldap_set_rebind_proc() does not exist"); 37 $result = ldap_set_rebind_proc($link, "rebind_proc_inexistent"); 43 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 27 var_dump(ldap_set_rebind_proc($link, "rebind_proc")); 28 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() 27 ldap_set_rebind_proc($link, "rebind_proc");
|
/PHP-8.0/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 | 412 ZEND_FUNCTION(ldap_set_rebind_proc); 515 ZEND_FE(ldap_set_rebind_proc, arginfo_ldap_set_rebind_proc)
|
H A D | ldap.stub.php | 258 function ldap_set_rebind_proc($ldap, ?callable $callback): bool {} function
|
H A D | ldap.c | 3717 PHP_FUNCTION(ldap_set_rebind_proc) in PHP_FUNCTION() argument 3737 ldap_set_rebind_proc(ld->link, NULL, NULL); in PHP_FUNCTION() 3744 ldap_set_rebind_proc(ld->link, _ldap_rebind_proc, (void *) link); in PHP_FUNCTION()
|
/PHP-8.0/ |
H A D | UPGRADING | 352 . The interface of ldap_set_rebind_proc has changed; the $callback parameter
|
Completed in 25 milliseconds