Ricezione di richieste di dati POST multipart in PHP
Voglio ricevere la seguente richiesta HTTP in PHP: Content-type: multipart/form-data;boundary=main_boundary –main_boundary Content-type: text/xml <?xml version='1.0'?> <content> Some content goes here </content> –main_boundary Content-type: multipart/mixed;boundary=sub_boundary –sub_boundary Content-type: application/octet-stream File A contents –sub_boundary Content-type: application/octet-stream File B contents –sub_boundary –main_boundary– (Nota: ho indentato le sotto-parti solo per renderlo più leggibile per questo post.) Non sono molto fluente […]