Skip to content

Instantly share code, notes, and snippets.

@frankdejonge
Last active August 29, 2015 14:04
Show Gist options
  • Save frankdejonge/e901b8a0aca5c4f9ba1b to your computer and use it in GitHub Desktop.
Save frankdejonge/e901b8a0aca5c4f9ba1b to your computer and use it in GitHub Desktop.
<?php
use GuzzleHttp\Post\PostFile;
$request = $client->createRequest('POST', 'http://example.com/');
$postBody = $request->getBody();
$readStream = $flysystem->readStream($fileLocation);
$postBody->addFile(new PostFile('test', $readStream);
$response = $client->send($request);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment