jeudi 8 février 2018

file_get_content don't work for special site

i want to get content of https://06fazmusic.com/ but file_get_content don't work.

$context = stream_context_create(array(
'http' => array(
    'method' => "GET",
    'follow_location' => false,
    'header' => "Accept-Language: en-US,en;q=0.8rn" .
        "Accept-Encoding: gzip,deflate,sdchrn" .
        "Accept-Charset:UTF-8,*;q=0.5rn" .
        "Accept-Language:en-US,en;q=0.8" .
        "Cache-Control:max-age=0" .
        "User-Agent:Mozilla/5.0 (Windows NT 10.0; Win64; x64) 
AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36"
    )
));


$post_url='https://06fazmusic.com/omid-called-namaze-eshgh/';
$array = get_headers($post_url);
echo file_get_contents($post_url, false, $context);  




Aucun commentaire:

Enregistrer un commentaire