PHP Warning: strpos(): Offset not contained in string in /home/../load.php on line 87 hatası alıyorum yardımcı olabilecek varmı ?


function strposa($haystack, $needles=array(), $offset=0) {
$chr = array();
foreach($needles as $needle) {
$res = strpos($haystack, $needle, $offset);
if ($res !== false) $chr[$needle] = $res;
}
if(empty($chr)) return false;
return min($chr);
}