Si une chaîne contient un mot spécifique en php

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