1. Go to this page and download the library: Download datingvip/irc library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
datingvip / irc example snippets
DatingVIP\IRC\Connection;
use DatingVIP\IRC\Listener;
use DatingVIP\IRC\Logger;
use DatingVIP\IRC\Message;
use DatingVIP\IRC\Task;
use DatingVIP\IRC\Robot;
class Log implements Logger {
public function onSend($line) { printf("> %s\n", $line); }
public function onReceive($line) { printf("< %s\n", $line); }
}
class Repeat extends Task {
public function __construct(Connection $irc, Message $msg) {
$this->irc = $irc;
$this->msg = $msg;
}
public function __invoke() {
/* we can do whatever we want here:
search docs, take as long as we want/need */
$this->irc->msg(
$this->msg->getNick(),
$this->msg->getText());
$this->irc->msg(
$this->msg->getChannel(),
sprintf(
"%s said \"%s\" to %s",
__CLASS__,
$this->msg->getText(),
$this->msg->getNick()));
}
protected $irc;
protected $msg;
}
class Listen implements Listener {
public function __construct($nick) {
$this->nick = $nick;
}
public function onReceive(Connection $irc, Message $msg) {
if ($msg->getType() == "PRIVMSG" &&
$msg->getNick() == $this->nick) {
/* returning a Task object
threads the work */
return new Repeat($irc, $msg);
}
}
protected $nick;
}
set_time_limit(0);
/* open connection to server */
$connection = new Connection("irc.efnet.org", 6667);
/* make sure we see all input/output */
$connection->setLogger(new Log());
/* create robot with default pool */
$robot = new Robot($connection, new Pool(4));
/* add listeners */
$robot->addListener(
new Listen("test-user2"));
/* login, join channels and enter main loop */
$robot->login("bot")
->join("#devs")
->loop();
DatingVIP\IRC\Connection;
use DatingVIP\IRC\Listener;
use DatingVIP\IRC\Logger;
use DatingVIP\IRC\Message;
use DatingVIP\IRC\Task;
use DatingVIP\IRC\Robot;
use DatingVIP\IRC\Manager;
/* ... */
class Manage implements Manager {
public function onStartup(Robot $robot) {
printf("startup\n");
}
public function onJoin (Robot $robot, Message $message) {}
public function onNick (Robot $robot, Message $message) {}
public function onPart (Robot $robot, Message $message) {}
public function onPriv (Robot $robot, Message $message) {}
public function onShutdown(Robot $robot) {
printf("shutdown\n");
}
}
set_time_limit(0);
/* open connection to server */
$connection = new Connection
("irc.datingvip.com", 9867, true);
/* make sure we see all input/output */
$connection->setLogger(new Log());
/* create robot with default pool */
$robot = new Robot($connection, new Pool(4), new Manage());
/* add listeners */
$robot->addListener(
new Listen("krakjoe"));
/* login, join channels and enter main loop */
$robot->login("bot")
->join("#devs")
->loop();
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.