Created
December 17, 2020 15:59
-
-
Save WhiteGrouse/41aae880e678f06767ed8d68629361a2 to your computer and use it in GitHub Desktop.
botが参加しているサーバと、そのサーバのチャンネルの一覧を表示するサンプル
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| require __DIR__ . '/../vendor/autoload.php'; | |
| use Discord\Discord; | |
| $discord = new Discord([ | |
| 'token' => '', | |
| 'logging' => false | |
| ]); | |
| $discord->on('ready', function($discord) { | |
| foreach($discord->guilds as $guild) { | |
| print($guild->name . "\n"); | |
| foreach($guild->channels as $channel) { | |
| print("- " . $channel->name . "\n"); | |
| } | |
| } | |
| $discord->close(); | |
| }); | |
| $discord->run(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment