Php LDAP_OPT_DEBUG_LEVEL,7没有跟踪

时间:2014-07-02 03:22:59

标签: php logging ldap

我正在尝试让ldap_bind来追踪它的作用。我有以下

ldap_set_option(NULL, LDAP_OPT_DEBUG_LEVEL, 7);
putenv('LDAPTLS_REQCERT=never');
error_reporting(E_ALL);
ini_set('display_errors', 1);

$ds = ldap_connect($server);
$r = ldap_bind($ds, $admin, $passwd);

我删除了一些设置变量的代码。但是,我希望看到跟踪声明,以帮助解决另一个问题。

1 个答案:

答案 0 :(得分:6)

设置选项ldap_error($ds)后,您需要使用ldap_set_option打印出错误。以下链接http://ourlife01.blogspot.co.uk/2012/05/debugging-ldap-php-scripts.html有一个示例。