How to upload files (multipart/form-data) with multidimensional POSTFIELDS using PHP and CURL?

前端 未结 3 794
小蘑菇
小蘑菇 2021-01-12 13:41

I\'m having problems with posting a multidimensional array with file uploads using PHP and CURL.

The multidimensional array is for example:

$post[\'q         


        
3条回答
  •  感情败类
    2021-01-12 14:00

    Another way to accomplish the first answer:

    foreach( array("yes","no","maybe") as $key=>$value )
        $post["answers[$key]"] = $value;

提交回复
热议问题