Ver Mensaje Individual
  #5 (permalink)  
Antiguo 07/12/2011, 13:55
Avatar de humanista
humanista
 
Fecha de Ingreso: abril-2005
Mensajes: 878
Antigüedad: 19 años, 8 meses
Puntos: 15
Respuesta: Comprobar si la foto existe o no

vale vale, leyendo la documentación he encontrado la solución, aquí la comparto:

Código PHP:
Ver original
  1. $fileUrl = "http://www.examplecom/test.jpg";
  2. $AgetHeaders = @get_headers($fileUrl);
  3. if (preg_match("|200|", $AgetHeaders[0])) {
  4. // file exists
  5. } else {
  6. // file doesn't exists
  7. }