duanjie6912 2014-09-01 15:03
浏览 32

fputs只返回未知命令

I have a very small script inwhich I'm trying to get it to post a command in IRC.

<?php

    set_time_limit(0);
    $socket = fsockopen("irc.twitch.tv", 6667);
    fputs($socket,"USER greatbritishbgbot
");
    fputs($socket,"PASS oauth:95uf89rv74gawp93ilfafeqnihpxb74
");
    fputs($socket,"NICK greatbritishbgbot
");
    fputs($socket,"JOIN #greatbritishbg
");
    $ircChannel = "#greatbritishbg";

    while($data = fgets($socket, 128)) {
        $msg = "test";
        fwrite($socket, "PRIVMSG " . $ircChannel . " :" . $msg . "
");
        echo nl2br($data);
        flush();
    }


?>

Every time I execute this, I receive the error: greatbritishbgbot HELP:Unknown command. What is the correct way of using fputs to run an IRC command?

Edit: This question was requested to be closed and downvoted because I am apparently asking for debugging information. Which is incorrect. I have asked for an explanation into how one should use fputs in comparison to how I use it.

I ended up using WildPHP which only needed me to modify a config file.

I highly recommend it.

  • 写回答

0条回答 默认 最新

    报告相同问题?

    悬赏问题

    • ¥20 机器学习能否像多层线性模型一样处理嵌套数据
    • ¥20 西门子S7-Graph,S7-300,梯形图
    • ¥50 用易语言http 访问不了网页
    • ¥50 safari浏览器fetch提交数据后数据丢失问题
    • ¥15 matlab不知道怎么改,求解答!!
    • ¥15 永磁直线电机的电流环pi调不出来
    • ¥15 用stata实现聚类的代码
    • ¥15 请问paddlehub能支持移动端开发吗?在Android studio上该如何部署?
    • ¥20 docker里部署springboot项目,访问不到扬声器
    • ¥15 netty整合springboot之后自动重连失效