Если строка содержит конкретное слово в php

if (str_contains('How are you', 'are')) { 
    echo 'true';
}
nanaseous