Warning: file_get_contents(mi pagina): failed to open stream: HTTP request failed! in on line 7
Pero cuando lo hago con un link externo si me sirve, no entiendo porqué pasa eso
Aquí está mi código PHP cuando le pongo el file_get_contents() ->
Código PHP:
Ver original
<?php array( 'header' => 'User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; es-CL; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3' . PHP_EOL ) ); echo $page; ?>
Y aquí está el otro código cuando lo intento hacer con curl:
Código PHP:
Ver original
<?php $url= 'http://www.google.com'; curl_setopt ($ch, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.6) Gecko/20070725 Firefox/2.0.0.6"); echo "$text"; ?>