Warning: Call-time pass-by-reference has been deprecated - argument passed by value; If you would like to pass it by reference, modify the declaration of getimagesize(). If you would like to enable call-time pass-by-reference, you can set allow_call_time_pass_reference to true in your INI file. However, future versions may not support this any longer. in c:\program files\appserver\www\pulsillo\galeria\foto.php on line 73
donde me marca el warning es qui:
Código PHP:
function getCaption($path)
{
$size = GetImageSize ($path,&$info);
if (isset ($info["APP13"]))
{
$iptc = iptcparse ($info["APP13"]);
return $iptc["2#120"][0];
}
else { return(null); }
}