$host="abc.com.cn";
$user_uid="abc@abc.com"
$user_password="123123";
$port="389";
if($conn = ldap_connect($host,$port) ){
//设置参数
//ldap_set_option ( $conn, LDAP_OPT_TIMELIMIT, 1 );
// set_time_limit(3);
$bd = ldap_bind($conn, $user_uid, $user_password);
}
是不是还短什么东西 我这样写了 可以把用户信息发送到AD 但是接收到返回值要很长时间 求指教