Skip to content
New issue

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

How to call from text file? #7

Closed
beneyraheem opened this issue Aug 17, 2017 · 1 comment
Closed

How to call from text file? #7

beneyraheem opened this issue Aug 17, 2017 · 1 comment

Comments

@beneyraheem
Copy link

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

@Bogdaan
Copy link
Owner

Bogdaan commented Oct 11, 2017

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
        });

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants