Skip to content

Instantly share code, notes, and snippets.

@WhiteGrouse
Created December 17, 2020 15:59
Show Gist options
  • Select an option

  • Save WhiteGrouse/41aae880e678f06767ed8d68629361a2 to your computer and use it in GitHub Desktop.

Select an option

Save WhiteGrouse/41aae880e678f06767ed8d68629361a2 to your computer and use it in GitHub Desktop.
botが参加しているサーバと、そのサーバのチャンネルの一覧を表示するサンプル
<?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