like if someone type command "!user 123456" then send message "number banned"
I tried this but won't worked...
$ban = array('112233','123456'); if(strpos($message, "!user $ban") ===0){ sendMessage($chatId, "<u>Number Banned!</u>", $message_id); }
like if someone type command "!user 123456" then send message "number banned"
I tried this but won't worked...
$ban = array('112233','123456'); if(strpos($message, "!user $ban") ===0){ sendMessage($chatId, "<u>Number Banned!</u>", $message_id); }
Instead of using strpos, if you're going to do more commands you should parse out the action and data from the message, then you can use logic to do something on
user
and something onfoobar
etc, using the rest of the message as the data or splitting it up further.Then if some thing like the following is going to be used in multiple places:
Make a function:
Then use it instead of the in_array