Está en la página 1de 1

// Obtener URL de foto

public function ObtenerFotoUrl($id)


{
$foto = "../imagenes/".$id;

if (file_exists($foto.".png"))
{
$foto = $foto . ".png";
} else if(file_exists($foto.".PNG"))
{
$foto = $foto . ".PNG";
} else if(file_exists($foto.".jpg"))
{
$foto = $foto . ".jpg";
} else if(file_exists($foto.".JPG"))
{
$foto = $foto . ".JPG";
} else
{
$foto = "../imagenes/default.png";
}
return Funciones::$DIRECCION_WEB_SERVICE . $foto;
}

También podría gustarte