PHPKonf 2025 Baku

Voting

: min(zero, four)?
(Example: nine)

The Note You're Voting On

bart-holland at wedefo dot nl
11 years ago
Adding a user to a group in Apple's OpenDirectory goes as follows:

<?php

$dn
= "cn=groupname,cn=groups,dc=example,dc=com";
$entry['memberuid'] = "username";

ldap_mod_add($connect, $dn, $entry);

?>

<< Back to user notes page

To Top