puoi fare uno split(" ", $testo) con una while cercare nell'array finche nn trovi la parola che cerchi, dopodiche aumentargli l'indice:

Codice PHP:
// ... lettura contenuto del file

$key "xxx";
$words split(" "$testo);

$i 0;
while (
$words[$i] != $key$i++
$result $words[$i++];