PHP 8.5.0 Alpha 4 available for testing

Voting

: one plus three?
(Example: nine)

The Note You're Voting On

davidsmith at byuNOSPAM dot edu
22 years ago
The $entry parameter can be an array of values for an attribute. Just be careful that your array's indices are numerically contiguous. For example, when using this $entry array, ldap_modify will fail with little explanation:

$entry = array( 0 => 'foo', 2 => 'bar' );

While this one will work just fine:

$entry = array( 0 => 'foo', 1 => 'bar' );

Hope this helps someone out.

<< Back to user notes page

To Top