strpos () ожидает, что параметр 1 будет строкой, объект задан
$mystring = 'abc';
$findme = 'a';
$pos = strpos($mystring, $findme);
Sleepy Squirrel
$mystring = 'abc';
$findme = 'a';
$pos = strpos($mystring, $findme);