Ver Mensaje Individual
  #1 (permalink)  
Antiguo 25/07/2015, 17:12
Rebuilding
 
Fecha de Ingreso: julio-2014
Mensajes: 161
Antigüedad: 9 años, 9 meses
Puntos: 4
HTTP/1.1 411 Length Required

Me da este error

Warning: file_get_contents(http://www.sepomex.gob.mx/lservicios...xportar.aspx): failed to open stream: HTTP request failed! HTTP/1.1 411 Length Required in C:\xampp-portable\htdocs\TIENDA\b.php on line 15

Este es mi script

Código PHP:
<?php
// Crear un flujo
$opciones = array(
  
'http'=>array(
    
'method'=>"POST",
    
'rblTipo'=>"txt",

    
'header'=>"Accept-language: en\r\n" .
              
"Cookie: foo=bar\r\n"
  
)
);

$contexto stream_context_create($opciones);
// Abre el fichero usando las cabeceras HTTP establecidas arriba
$fichero file_get_contents('http://www.sepomex.gob.mx/lservicios/servicios/CodigoPostal_Exportar.aspx'false$contexto);
?>
cual sera el error?