I'm getting blind on this one.
Please help me and tell me whats wrong??
<?
$screenshot_extensions = array('.gif','.jpg','.bmp','.png');
$ModName = "UpDownload";
$shots_temp_folder = "modules/$ModName/shots/temp";
$input_source = "$shots_temp_folder/14";
$RealName = Get_ImageExtension($input_source);
echo $RealName;
function Get_ImageExtension($input_source){
while($ext = current($screenshot_extensions))
{
if(file_exists("$input_source".$ext))
{
$input_source = $input_source.$ext;
}
next($screenshot_extensions);
}
return $input_source;
}
?>
I get this error:
Warning: current(): Passed variable is not an array or object in D:\wwwElevWeb\wwwroot\test\index2.php on line 13
modules/UpDownload/shots/temp/14
Line 13 is the WHILE.