<?php

$String = "asdfghjlzzTESTEzzxcvbnm";

if (stripos($String, 'TESTE') !== false) {
    echo "Existe";
} else {
    echo "Não existe";
}