httpful icon indicating copy to clipboard operation
httpful copied to clipboard

Sending array post with file

Open vuquangthinh opened this issue 9 years ago • 0 comments

I like this library, but i have a trouble with post data I want: $_POST = [ 'foo' => [ 'bar' => 'tar', ], ];

$_FILES = [ 'file1' => .... ];

I am using yii2, and using httpful to create a restclient. But I got: $_POST = [ 'foo' => 'Array' ]; PS: I've debug with "var_dump" $_POST data. I think encode data string has been got a problem.

vuquangthinh avatar Sep 20 '15 07:09 vuquangthinh