| 
        php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits             
             [2000-07-28 02:08 UTC] sniper@php.net
  | 
    |||||||||||||||||||||||||||
            
                 
                Copyright © 2001-2025 The PHP GroupAll rights reserved.  | 
        Last updated: Tue Nov 04 14:00:01 2025 UTC | 
In fact it seems that ldap_get_values_len has the same behaviour as ldap_get_values. In order to fix that i corrected the funtion : ldap_get_values_len in file php-4.0.1/ext/ldap/ldap.c I replaced the line : add_next_index_string(return_value, ldap_value_len[i]->bv_val, 1); with add_next_index_stringl(return_value, ldap_value_len[i]->bv_val, ldap_value_len[i]->bv_len, 1); Then it seems to be OK Michel Alexeline