Open BurningDog opened 1 month ago
@BurningDog Hello, in PHP it basically doesn't work.
https://bugs.php.net/bug.php?id=55815 https://github.com/symfony/symfony/issues/9226
But you can use https://pecl.php.net/package/apfd
You can also use the POST
method to upload files to the server.
Good news - this will be fixed in php 8.4! https://wiki.php.net/rfc/rfc1867-non-post
The context of using
MultipartDecoder
is when we are Uploading to an Existing Resource with its Fields.MultipartDecoder
works as expected when an API POST is done and a new resource is created.However, at some point we might want to replace the existing uploaded file with a new file. This is most likely done with a PATCH i.e. define this operation (same as with the POST):
However, there's no way I can see in the
$request
to get the values out of the transmitted data, i.e. both$request->request->all()
and$request->files->all()
arenull
.The curl looks like so:
I assume that it's not possible to PATCH
multipart/form-data
, but then this means that we can never update an image via the API.What do we do instead in this case?