We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is there a way to call from text from a txt file.
My plan is to add many words to a text file and when a user type anyword from that txt file, a message to send. Like filtering bad words from a file.
Its difficult to add all words in the bot.php file.
I believe it is possible to explode text and check for preg match
The text was updated successfully, but these errors were encountered:
You can use this tamplate:
// new line - new word $badWords = explode("\n", file_get_contents('words.txt')); // ... init $bot $bot->on(function (Event $event) use ($badWords) { return ( $event instanceof \Viber\Api\Event\Message && array_search($event->getMessage()->getText(), $badWords) !== false ); }, function() { // <-- YOU HANDLER HERE });
Sorry, something went wrong.
No branches or pull requests
Is there a way to call from text from a txt file.
My plan is to add many words to a text file and when a user type anyword from that txt file, a message to send. Like filtering bad words from a file.
Its difficult to add all words in the bot.php file.
I believe it is possible to explode text and check for preg match
The text was updated successfully, but these errors were encountered: