ircg_channel_mode

(PHP 4 >= 4.0.5, PHP 5 <= 5.0.4)

ircg_channel_mode --  Set channel mode flags for user

Description

bool ircg_channel_mode ( resource connection, string channel, string mode_spec, string nick )

Set channel mode flags for channel on server connected to by connection. Mode flags are passed in mode_spec and are applied to the user specified by nick.

Mode flags are set or cleared by specifying a mode character and prepending it with a plus or minus character, respectively. E.g. operator mode is granted by '+o' and revoked by '-o', as passed as mode_spec.


add a note add a note User Contributed Notes
lanzer22 at yahoo dot com
18-Jun-2003 04:56
To grant rights to user named "admin", the following did not work for me:

ircg_channel_mode($session_id, "#test", "+o", "admin");

instead, try:

ircg_channel_mode($session_id, "#test", "+o admin");

Have fun!