1. Go to this page and download the library: Download vzgcoders/twitchphp library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
vzgcoders / twitchphp example snippets
ignore_user_abort(1);
set_time_limit(0); // Don't time out the script
ini_set('max_execution_time', 0); // Don't time out the script
ini_set('memory_limit', '-1'); //Unlimited memory usage
andler('php://stdout'));
om/discord-php/DiscordPHP)
//'discord_output' => true, // Output Twitch chat to a Discord server's channel
//'loop' => $loop, // Pass your own instance of $loop to share with other ReactPHP applications
'socket_options' => [
'dns' => '8.8.8.8', // Can change DNS provider
],
'verbose' => true, // Additional output to console (useful for debugging TwitchPHP)
'debug' => false, // Additional output to console (useful for debugging communications with Twitch)
'logger' => $logger,
//Custom commands
'commandsymbol' => [ // Process commands if a message starts with a prefix in this array
"@$nick", //Users can mention your channel instead of using a command symbol prefix
'!s',
],
'whitelist' => [ // Users who are allowed to use restricted functions
strtolower($nick),
'shriekingechodanica',
],
'badwords' => [ // List of blacklisted words or phrases in their entirety; User will be immediately banned with reason 'badword' if spoken in chat
'Buy followers, primes and viewers',
'bigfollows . com',
'stearncomminuty',
'Get viewers, followers and primes on',
],
'responses' => [ // Whenever a message is sent matching a key and prefixed with a command symbol, reply with the defined value
'ping' => 'Pong!',
'github' => 'https://github.com/VZGCoders/TwitchPHP',
'discord' => 'https://discord.gg/NU4BS5P36g',
],
'functions' => [ // Enabled functions usable by anyone
'help', // Send a list of commands as a chat message
],
'restricted_functions' => [ // Enabled functions usable only by whitelisted users
'join', //Joins another user's channel
'leave', //Leave the current user's channel
'ban', // Ban someone from the channel, takes a username and an optional reason
],
'private_functions' => [ // Enabled functions usable only by the bot owner sharing the same username as the bot
'stop', //Kills the bot
'php', //Outputs the current version of PHP as a message
],
);
//