Strings Php

    $haystack = 'is a test';
    $pos = strstr ($haystack, 'is');
    if (!$pos)
      echo "String not found\n";
    else
      echo "String found: $pos\n";
?>