strpos () spodziewa się parametru 1, podany obiekt

$mystring = 'abc';
$findme   = 'a';
$pos = strpos($mystring, $findme);
Sleepy Squirrel