我需要一个简单的php IRC bot,它通过POST请求接收消息并将该消息发送到irc通道。为此,我从PHP - IRC Bot Not sending message Help改编了机器人。然后我使用消息队列将POST消息从IRC related help发送到机器人。
然而,当我通过start.html运行php脚本时,机器人甚至没有加入频道。 irc.php - >
<?php
$ircServer = "irc.freenode.net";
$ircPort = "6667";
$ircChannel = "##my-channel";
set_time_limit(0);
$ircSocket = fsockopen($ircServer, $ircPort, $eN, $eS);
$msg = $_POST['msg'];
if ($ircSocket)
{
fwrite($ircSocket, "USER EDI Normandy-SR2 Alliance Dr-Eva\n");
fwrite($ircSocket, "NICK Hit-Hi-Fit-Hai\n");
fwrite($ircSocket, "JOIN " . $ircChannel . "\n");
fwrite($ircSocket, "PRIVMSG $ircChannel :$msg\n");
$queueKey = 123321;
$queue = false;
// Join the IPC queue
$queue = msg_get_queue($queueKey);
if(!$queue) echo "ERROR: Could not join IPC queue. Form data will not be received";
while(1)
{
while($data = fgets($ircSocket, 128))
{
echo nl2br($data);
flush();
$ex = explode(' ', $data);
if($ex[0] == "PING") fputs($socket, "PONG ".$ex[1]."\n");
if (msg_receive($queue, 0, $msgType, 1024, $msgData, true, MSG_IPC_NOWAIT)) {
//fwrite($ircSocket, "PRIVMSG $ircChannel :$msgData\n");
echo "callback working";
}
}
}
}
?>
她是我如何调用此脚本。 start.html - &gt;
<html><body>
<h4>Start Bot</h4>
<form action="irc.php" method="post">
Command: <input type="text" name="msg" />
<input type="submit" />
</form>
</body></html>
如果删除消息队列的代码,机器人会加入频道。
答案 0 :(得分:2)
根据您的评论,您错过了扩展程序。
如果你可以控制机器,你可以安装php-sysvmsg扩展名。
如果没有,那么你最终可能不得不使用tcp或udp作为“ipc”或命名管道。
sysvmsg的包名称: