大文字と小文字を区別しない並べ替えでldap_search()
関数を使用するにはどうすればよいですか?PHP
bool ldap_sort ( resource $link , resource $result , string $sortfilter )
このスタイルを使用して、LDAP の大文字と小文字を区別せずに並べ替えたい:
$search_return = ldap_search($ldap_connection,$ldap_base,$search_filter);
ldap_sort($ldap_connection,$search_return,$value);
$entries = ldap_get_entries($ldap_connection,$search_return);
私は何をやっている?