Ver Mensaje Individual
  #3 (permalink)  
Antiguo 17/04/2011, 07:46
Avatar de masterpuppet
masterpuppet
Software Craftsman
 
Fecha de Ingreso: enero-2008
Ubicación: Montevideo, Uruguay
Mensajes: 3.550
Antigüedad: 16 años, 11 meses
Puntos: 845
Respuesta: Problemas con la funcion file_get_contents

Que tal Cherivera,

hay varias formas de resolverlo, pero bueno, te dejo un par, podrías suprimir el mensaje con @(esto nunca es algo bueno, pero en fin te puede sacar de un apuro) y luego comprobar el resultado de file_get_contents:
Código PHP:
Ver original
  1. $url = '/***/';
  2. $response = @file_get_contents($url);
  3. if( ! $response) {
  4.     throw new Exception('/***/');
  5. }
  6. print_r($response);

otra opción seria setear el error handler antes de la llamada y luego hacer el restore:

Código PHP:
Ver original
  1.         '$severity, $message, $file, $line',
  2.         'throw new ErrorException($message, $severity, $severity, $file, $line);'
  3.     )
  4. );
  5.  
  6. try {
  7.    $response = file_get_contents($url);
  8.    print_r($response);
  9. } catch (Exception $e) {
  10.     echo $e->getMessage();
  11. }
  12.  

Saludos.
__________________
http://es.phptherightway.com/
thats us riders :)