Voting

: five minus five?
(Example: nine)

The Note You're Voting On

gsgleason at gmail dot com
10 years ago
To remove all of a particular attribute, feed it an empty array.

For example, to remove all members from a group:

<?php
ldap_mod_del
($ldapconn,$groupDN,array("member" => array()));
?>

<< Back to user notes page

To Top