Sending a username and password with PHP file_get_contents()Sending a username and password with PHP file_get_contents()

Posted June 29th, 2009 in PHP

Last week I looked at how send a username and password with PHP CURL. Using CURL is useful because you can examine the return information to see if the request was successful etc, but if your hosting provider doesn't have CURL for PHP enabled then you can still attempt to get the file by using file_get_contents and passing the authentication as part of the $context parameter.

Get a 7-Day Free Trial to FunPass.

In the example below, $url is the web address you want to get data from, and $username and $password are the login credentials.

$context = stream_context_create(array(
    'http' => array(
        'header'  => "Authorization: Basic " . base64_encode("$username:$password")
    )
));
$data = file_get_contents($url, false, $context);

If the login details were incorrect, or you were attempting to access a password protected location and didn't pass any credentials at all, you'll see an error like this:

Warning: file_get_contents(...): failed to open stream: HTTP request failed! 
HTTP/1.1 401 Authorization Required in ... on line 4

In future posts in this series I'll look at how to pass other headers along with a file_get_contents() request, for example how to send a form post. Again I would mention that it's probably better and easier to do this with CURL but if you must then it's possible with file_get_contents().

Related posts:

Share or Bookmark

Share or Bookmark this page using the following services. You will need to have an account with the selected service in order to post links or bookmark this page.

Subscribe or Follow

Subscribe via RSS or email, or follow me on Facebook or Twitter below. The RSS icon takes you through to Feedburner where you can select the service or application to use.

Comments

blog comments powered by Disqus