2
I have a JSON returning me the following fields:
{
"titulo": 'Primeiro contato',
"texto": 'Olá gostaria de fazer uma sugestão para vocês'
}
I’m trying to do the following check
foreach ($data as $msg) {
$titulo = $msg->titulo;
$texto = $msg->texto;
$termo = 'contato';
if (strpos( $titulo , $termo) === false) {
echo 'Não encontrado';
} else {
echo 'Encontrado';
}
}
In this way he returns only the words of the title and looks for only one word at a time. I want to search for more than one word in both the title and text of msg