Skip to content

Instantly share code, notes, and snippets.

@adrienbrault
Created April 8, 2013 16:40
Show Gist options
  • Save adrienbrault/5338309 to your computer and use it in GitHub Desktop.
Save adrienbrault/5338309 to your computer and use it in GitHub Desktop.
Download a file using guzzle
<?php
$client = ...;
$response = $client->get('http://guzzlephp.org/index.html', null, tmpfile())->send();
$response->getStream(); // Magic comes after
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment