8000 [HttpClient][Mime] support overwriting form encoding by croensch · Pull Request #18002 · symfony/symfony-docs · GitHub
[go: up one dir, main page]

Skip to content

[HttpClient][Mime] support overwriting form encoding #18002

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 4 commits into
base: 6.3
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix semicolon and introduce helpful var
  • Loading branch information
croensch authored May 6, 2023
commit 412b71343734f787a93750caa26f3e2ea73a3192
2 changes: 1 addition & 1 deletion http_client.rst
Original file line number Diff line number Diff line change
Expand Up @@ -630,7 +630,7 @@ according to the ``multipart/form-data`` content-type. The
By default, :class:`Symfony\\Component\\Mime\\Part\\Multipart\\FormDataPart`
will transfer file uploads in binary encoding. But you can enforce Base64::

DataPart::fromPath('/path/to/uploaded/file', null, null, 'base64')
$fileField = DataPart::fromPath('/path/to/uploaded/file', null, null, 'base64');

.. tip::

Expand Down
0