Php simple free text search

Hi there,
I am in a bit of a dilemna, I simply have no idea how to search for a desired text in php, all I need is the code for php simple free text search, for this code example.
<?php
$text ="hello World!";
if ($text contains "world") {
echo "True";
}
?>
Any help would be greatly appreaciated
