description ?? ''); $descriptionLength = strlen($description); $search = strtolower($this->triggerValue); $searchLength = strlen($search); // if the string to search for is longer than the description, // shorten the search string. if ($searchLength > $descriptionLength) { $search = substr($search, ($descriptionLength * -1)); $searchLength = strlen($search); } $part = substr($description, $searchLength * -1); if ($part == $search) { return true; } return false; } }