Skip to content

Instantly share code, notes, and snippets.

<?php
function add_privs($ns, $user, $privs, $sort = true) {
if (!in_array($user, $this->bdschannel[$ns]['privs'][$privs])) {
array_push($this->bdschannel[$ns]['privs'][$privs], $user);
if ($sort)
ksort($this->bdschannel[$ns]['privs'][$privs]);
}
}