Hallo,
Der Vergleiche soll prüfen ob Variable 1 Variable 2 enthhält, z.b Ob "is" in "history" steckt.
Es gibt in PHP (bisher;-) keinen Operator dafuer.
http://www.php.net/manual/de/language.operators.php
Du musst also eine String-Funktion nehmen.
PHP-Manual: String-Funktionen:
http://www.php.net/manual/de/ref.strings.php
z.B. substr_count
http://www.php.net/manual/de/function.substr-count.php
Gruesse,
Thomas
P.S. Freaks wuerden dazu wohl Regular Expressions nehmen...