<?php $messages = array( 'ircBot hey', 'hey ircBot', 'hey ircBot naa', 'hey MircBot', ); foreach ($messages as $message) { // using in_array $isMentioned = in_array('ircbot', preg_split('/\s+/', mb_strtolower($message))); printf("%s = {$message}\n", $isMentioned ? 'true' : 'false'); // using regex word boundaries $isMentioned = preg_match('/\b(ircBot)\b/i', $message); printf("%s = {$message}\n", $isMentioned ? 'true' : 'false'); }
You have javascript disabled. You will not be able to edit any code.