httpclient icon indicating copy to clipboard operation
httpclient copied to clipboard

A parallel HTTP client written in pure PHP

Results 1 httpclient issues
Sort by recently updated
recently updated
newest added

This data how to send? ``` $BODY .= '------WebKitFormBoundary'.$BOUNDARY.$eol; $BODY .= 'Content-Disposition: form-data; name="file"; filename="'.basename($cp).'"'.$eol; $BODY .= 'Content-Type: image/'.pathinfo(basename($cp), PATHINFO_EXTENSION).$eol.$eol; $BODY .= $Pic.$eol; ``` Trying like this: ``` $request->addPostFile('file', $cp,...