Function.ircg-list

Aus PHP-Wiki

Wechseln zu: Navigation, Suche
Definition DSL? und Stubenwagen Johanna weissZusatz-Krankenversicherung Online - Die Krankenhausbehandlung . Kinderbett Louis

ircg_list

(PHP 4 >= 4.3.3, PHP 5)

ircg_list -- List topic/user count of channel(s)

Description

bool ircg_list ( resource connection, string channel)
</BR >

ircg_list() will request a list of users in the channel. The answer is sent to the output defined by function.ircg-set-file or function.ircg-set-current. Gibt bei Erfolg TRUE zurück, im Fehlerfall FALSE.


Beispiel 1. ircg_list() example

<?php

// connect to server
$id = ircg_pconnect($nickname, $ip, $port);

// set to output to a file
ircg_set_file($id, 'irc_output.html');

// try to join a channel
if (!ircg_join($id, $channel)) {
    echo
"Cannot /join $channel<br />";
}

// send list command
ircg_list($id, $channel);

// wait for output to arrive
sleep(5);

// disconnect
ircg_disconnect($id,'Bye World');

// output everything
readfile('irc_output.html');

?>

This example will output something similar to:

... Channel #channel has n users and the topic is 'Topic' End of LIST ...

See also: function.ircg-set-file, function.ircg-set-current, and function.ircg-who.

Persönliche Werkzeuge