我一直在想并试图让我的IRC机器人向该频道上的百分之百的用户发送私信,但它不起作用。
这是我的脚本,当你看到它时你会理解它:
<?php
/**
* Configuration.
* Pretty self-explanatory
*/
$ircServer = "//";
$ircPort = "6667";
$ircChannel = "#//";
set_time_limit(0);
$msg = $_POST['message'];
$pr = $_POST['percentage'];
$pr /= 100;
$ircSocket = fsockopen($ircServer, $ircPort, $eN, $eS);
if ($ircSocket)
{
fwrite($ircSocket, "USER Lost rawr.test lol :code\n");
fwrite($ircSocket, "NICK Rawr" . rand() . "\n");
fwrite($ircSocket, "JOIN " . $ircChannel . "\n");
while(1)
{
while($data = fgets($ircSocket, 128))
{
echo nl2br($data);
flush();
// Separate all data
$exData = explode(' ', $data);
// Send PONG back to the server
if($exData[0] == "PING")
{
fwrite($ircSocket, "PONG ".$exData[1]."\n");
}
}
echo $eS . ": " . $eN;
}
shuffle($users);
$size = count($users);
$target = $size * $pr;
$target = $round($target);
for ($i = 0; $i <= $target; $i++) {
fwrite($ircSocket, "PRIVMSG " . $users[$i] . " :" . $msg . "\n");
}
?>
Evertime我尝试在此处重新编码是错误:Parse error: syntax error, unexpected $end in C:\xampp\htdocs\irc.php on line 55
我正在尝试制作一个百分比系统,它将把IRC频道上的用户百分比改为私人消息,并在随机播放系统上设置%。
答案 0 :(得分:1)
unexpected $end
表示它已到达文件的末尾,并且所有块({}
)都未关闭。没错,你的括号比闭括号更开阔;你忘了在某处关闭一个。基于缩进,我认为您打算在while
语句之后关闭内部if
循环:
while(1)
{
while($data = fgets($ircSocket, 128))
{
echo nl2br($data);
flush();
// Separate all data
$exData = explode(' ', $data);
// Send PONG back to the server
if($exData[0] == "PING")
{
fwrite($ircSocket, "PONG ".$exData[1]."\n");
}
} // <-- THIS IS NEW
}
仅仅是略读代码,我没有看到任何明显错误的方法,但我实际上没有尝试过它
答案 1 :(得分:1)
你忘了'}' if($ ircSocket){