Answers for "php file_get_contents forwarded"

PHP
2

php file_get_contents follow redirect

$context = stream_context_create(
    array(
        'http' => array(
            'follow_location' => true/false
        )
    )
);

$html = file_get_contents('http://www.example.com/', false, $context);

var_dump($http_response_header);
Posted by: Guest on April-14-2021

Code answers related to "php file_get_contents forwarded"

Browse Popular Code Answers by Language