我正在用 PHP 进行一些 LDAP 开发,并且在 PHP 中遇到了某种可能是新手的值分配。
我的问题特定于 LDAP_MODIFY,但可能是一般问题。我正在尝试更新一个属性,但以下属性给了我一个未找到属性的错误:
$email = 'Whitegon024@thedomain.org';
$attributes = array( "userPrincipleName" => "$email");
但以下是成功的:
$attributes = array( "userPrincipalName" => 'Whitegon024@thedomain.org') ;
如果我做print_r($attributes);
任何一个,我会得到:
Array
(
[userPrincipleName] => Whitegon024@thedomain.org
)
有人有线索吗?我敢肯定这是非常简单的事情。