PHP gevorderde |
|
Hallo,
Ik heb deze functie:
function weg(&$irc, &$data) {
$irc->quit('Doei!');
}
function weg(&$irc, &$data) { $irc->quit('Doei!'); }
En die roep ik op met :
$irc->registerActionhandler(SMARTIRC_TYPE_CHANNEL, '!quit.*', $bot, 'weg');
$irc->registerActionhandler(SMARTIRC_TYPE_CHANNEL, '!quit.*', $bot, 'weg');
Maar hoe kan ik nu controleren of de nick die het zegt finduilas is?
if($nick == finduilas)
Maar hoe kom ik aan die $nick?
|